Initial commit

This commit is contained in:
2025-03-07 08:08:39 +01:00
commit e90cdf4e6a
43 changed files with 6421 additions and 0 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()]
})