1.打开 vue.config.js 把下面内容复制 pure_funcs种配置你要移除 的项

module.exports = {
//   打包后禁止在控制台输出console.log
  configureWebpack: config => {
    if (process.env.NODE_ENV === 'production') {
      config.plugins.push(
        new TerserPlugin({
          terserOptions: {
            ecma: undefined,
            warnings: false,
            parse: {},
            compress: {
              drop_console: true,
              drop_debugger: false,
              pure_funcs: ['console.log'] // 移除console
            }
          },
        }),
      )
    }
  },
}

2.在项目中 执行下面命令

npm install terser-webpack-plugin --save-dev

3、 在vue.config.js最顶部 粘贴以下代码

const TerserPlugin = require('terser-webpack-plugin');

如此简单

Logo

前往低代码交流专区

更多推荐