disable console.log entirely

This commit is contained in:
Jan Kessler 2025-06-13 12:42:09 +02:00
parent 8a2723a7a6
commit aecbc93c16
No known key found for this signature in database
GPG Key ID: FCF0DCB4ADFC53E7

View File

@ -39,5 +39,8 @@ export default defineConfig({
},
worker: {
format: 'es'
}
},
esbuild: {
pure: ['console.log'],
},
});