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

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

 

 

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

  因为 babel 依赖包不兼容。

 

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

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

  

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

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

sudo npm install -D [email protected] babel-core

如果出错添加--unsafe-perm

sudo npm install -D [email protected] babel-core i --unsafe-perm