webpack打包JSON.stringify()的过程中并没有报错,但是页面上时报错如下:
但是,当我换成window.JSON.stringify就好了。
后来找到解决办法是:
在webpack配置中加上target
字段,值设置为'node'
module.export = {
entry:{},
output:{},
...
...
...
plugins:[],
...
target:'node'
}
可以根据自己的情况参考官网:
https://webpack.github.io/docs/configuration.html#target