Strip console logs from production build

This commit is contained in:
Flashfyre 2024-03-28 11:48:51 -04:00
parent b06c101020
commit 96bafab830
1 changed files with 12 additions and 9 deletions

View File

@ -1,7 +1,8 @@
import { defineConfig } from 'vite';
// import fs from 'vite-plugin-fs';
export default defineConfig({
export default defineConfig(({ mode }) => {
return {
plugins: [/*fs()*/],
server: { host: '0.0.0.0', port: 8000 },
clearScreen: false,
@ -9,6 +10,8 @@ export default defineConfig({
minify: 'esbuild',
},
esbuild: {
pure: mode === 'production' ? [ 'console.log' ] : [],
keepNames: true,
}
}
})