Initial commit

This commit is contained in:
Niek van der Maas
2023-03-02 22:12:55 +04:00
commit d4e3c40df1
18 changed files with 2036 additions and 0 deletions

7
vite.config.ts Normal file
View File

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