vue打包关闭console.log

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

在build webpack.prod.conf.js

	new UglifyJsPlugin({
  		uglifyOptions: {
    	compress: {
      	warnings: false,
      	drop_debugger: true, 
      	drop_console: true // 打包之后关闭console.log
   	 }
  	},
  	sourceMap: config.build.productionSourceMap,
  	parallel: true

转载于:https://my.oschina.net/pingheyongfeng/blog/3004078

你可能感兴趣的:(vue打包关闭console.log)