1. 程式人生 > >vue生產環境清除console.log

vue生產環境清除console.log

als vue 生產 開發 jsp compress pack js文件 bug

npm run build 後的生產環境的代碼,會有很多開發時留下的console.log(),不可能每個頁面不停地刪除

在build/webpack.prod.conf.js文件裏加上這樣一段代碼即可

new webpack.optimize.UglifyJsPlugin({
      compress: {
        warnings: false,
      drop_debugger:
true, //++ drop_console: true//++},
sourceMap: config.build.productionSourceMap, parallel:
true }),

vue生產環境清除console.log