Initial commit

This commit is contained in:
2025-01-29 10:52:53 -08:00
commit 8edd629bfc
31 changed files with 3796 additions and 0 deletions

12
svelte.config.js Normal file
View File

@ -0,0 +1,12 @@
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import adapter from "@sveltejs/adapter-static";
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
},
};
export default config;