1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > nodejs+react使用webpack打包时控制台报错

nodejs+react使用webpack打包时控制台报错

时间:2021-07-27 20:48:39

相关推荐

nodejs+react使用webpack打包时控制台报错

一、错误:Uncaught ReferenceError: process is not defined

解决方法:

new webpack.DefinePlugin({'process.env': {NODE_ENV: '"production"'}})

在webpack.config.js文件中的plugins中加入上述代码

二、错误:fixes WARNING Critical dependency: the request of a dependency is an expression

解决方法:

new webpack.ContextReplacementPlugin(/(.+)?express(\\|\/)(.+)?/,path.join(__dirname, 'src'),{})

在webpack.config.js文件中的plugins中加入上述代码

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。