vue打包去除console.log

new webpack.optimize.UglifyJsPlugin({
  compress:{
    warnings: false,
    drop_debugger: true,
    drop_console: true
  }
})

在webpack.prod.conf.js中添加

猜你喜欢

转载自blog.csdn.net/weixin_43837268/article/details/92840411