initial commit

This commit is contained in:
Malte Teichert
2024-05-19 16:36:14 +02:00
parent 0074d693f8
commit b22da65ad7
21 changed files with 417 additions and 2 deletions

7
vite.config.ts Normal file
View File

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