無論前方的路有多苦,只要走的方向正確,無論多麼崎嶇不平,都比站在原地更接近幸福。javascript
文章中的配置,項目基於Vue CLI 3.0搭建,版本大於等於3.0不會有問題,其餘環境版本請繞道😂。vue
module.exports = {
// 關閉線上源碼
productionSourceMap: false,
}
複製代碼
yarn add terser-webpack-plugin
複製代碼
module.exports = {
configureWebpack:{
optimization:{
minimizer: [new TerserPlugin({ terserOptions: { compress: { drop_console: true } } })]
}
}
}
複製代碼