feat: initial commit

This commit is contained in:
2026-08-19 21:23:42 +02:00
parent d87042cebb
commit f33bfd81f9
30 changed files with 5527 additions and 0 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { DevTools } from "@vitejs/devtools";
export default defineConfig({
devtools: {
enabled: true,
},
plugins: [svelte(), DevTools()],
});