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
未完待续~