打包上线后不输出 console

2024-02-28  本文已影响0人  小石头糖糖

Vue3+vite:

npm i terser

// vite.config.js 
export default defineConfig(({ mode, command }) => ({
  build: {
    minify: 'terser',
    terserOptions: {
      compress: {
        drop_console: true,
        drop_debugger: true,
      },
    },
  },
}));

Webpack:

npm install terser-webpack-plugin -D

// webpack.config.js 
module.exports = {
  optimization: {
    minimizer: [
      new TerserPlugin({
        terserOptions: {
          compress: {
            drop_console: true,
          },
        },
      }),
    ],
  },
}
上一篇下一篇

猜你喜欢

热点阅读