Initial commit

This commit is contained in:
2025-12-21 22:20:09 +01:00
commit aa50bbc062
17 changed files with 574 additions and 0 deletions

10
vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
import svg from '@poppanator/sveltekit-svg';
export default defineConfig({
plugins: [
svg(),
sveltekit()
]
});