Updated svelte to ts/vite

This commit is contained in:
cdricms
2024-04-28 21:45:05 +02:00
parent ced43cf2d8
commit 691c063590
15 changed files with 1080 additions and 61 deletions

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

@@ -0,0 +1,7 @@
import {defineConfig} from 'vite'
import {svelte} from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte()]
})