【已解决】webpack 打包 react 时报错:Plugin/Preset files are not allowed to export objects, only functions.

原因:

解决:

        将 react 修改为 @babel/preset-react ,即:

        

        然后再运行如下命令   

npm i @babel/preset-react

        最后就可以顺利打包了。

        以上。

猜你喜欢

转载自blog.csdn.net/Ja_time/article/details/89395338