美文网首页
webpack打包中遇到的各种问题收录

webpack打包中遇到的各种问题收录

作者: 凉生可可 | 来源:发表于2018-12-20 17:33 被阅读0次

    1:报错ReferenceError:Unknown plugin "transform-decorators-legacy" specified in "base"

    依赖项缺失,解决了这个后,你应该还会遇到另一个

    解决方法:

    npm install babel-plugin-transform-decorators-legacy
    npm install babel-preset-es2015
    

    2:报错Use Chunks.groupsIterable and filter by instanceof EntryPoint

    extract-text-webpack-plugin还不能支持webpack4.0.0以上的版本。

    解决方法:

    npm install --save-dev extract-webpack-plugin@next
    

    3:已安装babel-core,却报错Error: Cannot find module '@babel/core'

    babel-loader | babel 对应的版本需要一致: 即babel-loader需要搭配最新版本babel,不然需要回退版本

    解决方法:

    npm uninstall babel-loader
    npm install babel-loader@7.1.5
    

    未完待续~

    相关文章

      网友评论

          本文标题:webpack打包中遇到的各种问题收录

          本文链接:https://www.haomeiwen.com/subject/xscukqtx.html