vite打包过滤debugger,console

奔跑的哈密瓜 / 2023-05-25 / 原文

在vite.config.ts配置文件中,增加如下代码

const config: UserConfigExport = {
  build: {
    minify: 'terser',
    terserOptions: {
      compress: {
        //生产环境时移除console
        drop_console: true,
        drop_debugger: true,
      },
    }
  },
}