added readme and svelte

This commit is contained in:
2025-07-21 13:31:08 +02:00
commit f58e9ef5a2
28 changed files with 6024 additions and 0 deletions

7
vite.config.js Normal file
View File

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