vue webpack build 打包过滤console.log()日志

webpack.config.js 的 plugins 里面加上
vue cli创建项目在 webpack.prod.conf.js文件

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

猜你喜欢

转载自blog.csdn.net/bule_chen/article/details/77529917