🎉 Initial version

This commit is contained in:
2024-04-23 00:15:21 +02:00
commit 0d9074bd4a
14 changed files with 2220 additions and 0 deletions

8
vite.config.ts Normal file
View File

@ -0,0 +1,8 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { viteSingleFile } from "vite-plugin-singlefile"
// https://vitejs.dev/config/
export default defineConfig({
plugins: [svelte(), viteSingleFile()],
})