在 vue.config.js中配置
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
configureWebpack({
optimization: {
minimizer: [new TerserPlugin({ terserOptions: { compress: { drop_console: true } } })]
}
})
}
在 vue.config.js中配置
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
configureWebpack({
optimization: {
minimizer: [new TerserPlugin({ terserOptions: { compress: { drop_console: true } } })]
}
})
}
本文标题:Vue 打包上线之后 console.log()打印
本文链接:https://www.haomeiwen.com/subject/dmbvjrtx.html
网友评论