initial commit, lots of random shit

This commit is contained in:
Erin 2023-11-11 19:09:24 -05:00
commit 7bb18f0a71
27 changed files with 3394 additions and 0 deletions

9
vite.config.ts Normal file
View file

@ -0,0 +1,9 @@
import {sveltekit} from '@sveltejs/kit/vite';
import {defineConfig} from 'vite';
export default defineConfig({
plugins: [sveltekit()],
ssr: {
external: ['reflect-metadata'],
},
});