- dev ve prod için env ayarları yapıldı.

- test sunucusu iin build script eklendi
This commit is contained in:
Kevser
2025-07-28 17:14:07 +03:00
parent 7998b7bd6c
commit f4c0511afb
8 changed files with 23 additions and 7 deletions

View File

@ -11,5 +11,8 @@ export default defineConfig({
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
esbuild: {
drop: process.env.NODE_ENV === 'production' ? ['console', 'debugger'] : []
}
})