解决webpack打包报错 [webpack-cli] TypeError: merge is not a function问题
报错信息如下:
[webpack-cli] Failed to load '/Users/allard/Desktop/webpack-react-scaffold/config/webpack.prod.config.js' config [webpack-cli] TypeError: merge is not a function npm ERR! Failed at the webpack-react-scaffold@1.0.0 build script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
报错意思: TypeError: merge不是一个函数。
查看配置文件中设置为:const merge = require('webpack-merge');
查看官网上的介绍后修改为:const {merge} = require('webpack-merge');
配置文件修改成上面后,再次打包通过。
注:
- 从webpack-merge5.0.3 及更高版本开始,则需要使用:
const {merge} = require('webpack-merge');
- 如果版本低于5.0.3,则需要使用:
const merge = require('webpack-merge');
声明:
1. 本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
2. 如果内容损害你的权益请联系客服QQ:1642748312给予处理。
码云笔记 » 解决webpack打包报错 [webpack-cli] TypeError: merge is not a function问题
1. 本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
2. 如果内容损害你的权益请联系客服QQ:1642748312给予处理。
码云笔记 » 解决webpack打包报错 [webpack-cli] TypeError: merge is not a function问题