修复 Vite 配置中的压缩选项,将 drop_console 设置为 false,以保留控制台日志。

This commit is contained in:
jxxghp
2025-05-08 22:53:56 +08:00
parent 32b4b944cc
commit 3b1e65fc75

View File

@@ -167,7 +167,7 @@ export default defineConfig({
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
drop_console: false,
drop_debugger: false,
},
},