react之运行webpack报错:Error: Plugin/Preset files are not allowed to export objects, only functions

Error: Plugin/Preset files are not allowed to export objects, only functions

 

 

这里错误是因为 babel 的版本冲突。

因为 babel 依赖包不兼容。

 

可以查看你的 package.json 的依赖列表

由于之前安装@babel/core和babel-loader时没有指定版本号,导致和babel不兼容,官方文档注明:babel-loader 8.x | babel 7.x

解决办法,在终端重新安装

sudo npm install -D babel-loader@7 babel-core

如果出错添加--unsafe-perm

sudo npm install -D babel-loader@7 babel-core i --unsafe-perm

 

 


版权声明:本文为weixin_40200876原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。