在项目中的build/webpack.prod.conf.js文件中
在config下面的index.js文件中
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
drop_debugger: true,
drop_console: true
},
添加此配置就可以在打包之后去掉控制台的打印
在项目中的build/webpack.prod.conf.js文件中
在config下面的index.js文件中
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false,
drop_debugger: true,
drop_console: true
},
添加此配置就可以在打包之后去掉控制台的打印