From 3948adf460139fac2cb01e6a8b712a3e53643f41 Mon Sep 17 00:00:00 2001 From: Bernhard Kirchen Date: Sun, 3 Nov 2024 11:43:08 +0100 Subject: [PATCH] keep console.log() when serving webapp the removal of console and debugger statements by esbuild even when not building for production seems to be a regression, as these were definitely working in the past. this change uses the command parameter to configure esbuild to either keep or indeed remove the respective statements. they are only kept if command is not "serve". to avoid having to indent everything in defineConfig() by one block, the return statement and closing curly brace were added "inline". --- webapp/vite.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index ed6b672..ba0ad79 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -19,7 +19,7 @@ try { } // https://vitejs.dev/config/ -export default defineConfig({ +export default defineConfig(({ command }) => { return { plugins: [ vue(), viteCompression({ deleteOriginFile: true, threshold: 0 }), @@ -59,7 +59,7 @@ export default defineConfig({ target: 'es2022', }, esbuild: { - drop: ['console', 'debugger'], + drop: command !== 'serve' ? ['console', 'debugger'] : [] }, server: { proxy: { @@ -78,4 +78,4 @@ export default defineConfig({ } } } -}) +} })