vue webpack打包时如何去掉console.log
在webpack.prod.conf.jsplugins:[ ] 中 添加new UglifyJsPlugin({uglifyOptions: {compress: {warnings: false,// 打包后 log 就不会出现了drop_debugger: true,...
·
在webpack.prod.conf.js
plugins:[ ] 中 添加
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
// 打包后 log 就不会出现了
drop_debugger: true,
drop_console: true,
pure_funcs: ['console.log']
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
})
更多推荐
已为社区贡献12条内容
所有评论(0)