webpack打包时删除console.log

Others 2019-07-17 03:30:48 2019-07-17 03:30:48 2693 次浏览
new webpack.optimize.UglifyJsPlugin({
        compress: {
          warnings: false,
          drop_debugger: true,
          drop_console: true
        }

})