第一步
第二步
代码送上
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
// 打包去除console
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
drop_debugger:true,
drop_console:true, //不打印console
pure_funcs: ['console.log'] //移除console
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),