also disable console.debug

This commit is contained in:
Jan Kessler 2025-06-13 13:54:15 +02:00
parent aecbc93c16
commit 4681b06206
No known key found for this signature in database
GPG Key ID: FCF0DCB4ADFC53E7

View File

@ -41,6 +41,6 @@ export default defineConfig({
format: 'es' format: 'es'
}, },
esbuild: { esbuild: {
pure: ['console.log'], pure: ['console.log', 'console.debug']
}, }
}); });