feat: add TypeScript Vite config

This commit is contained in:
2026-03-07 23:02:18 -06:00
parent 71e2d59900
commit aed1bdf77d

13
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
export default defineConfig({
plugins: [svelte()],
server: {
port: 5173
},
build: {
outDir: 'dist',
emptyOutDir: true
}
});