Skip to content

修改压缩模式

  • 将代码压缩模式改成 terser 模式(原压缩模式为 esbuild),并打包剔除所有 console 和 debugger
  • reactvue 模板都已配置
  • 增加配置:vite.config.js
js
export default defineConfig({
  build: {
    minify: "terser",
    terserOptions: {
      compress: {
        drop_console: true,
        drop_debugger: true,
      },
    },
  },
})