Initial Commit

This commit is contained in:
eneller
2026-04-08 00:23:43 +02:00
commit 0b36236b2c
40 changed files with 6132 additions and 0 deletions

16
svelte.config.js Normal file
View File

@@ -0,0 +1,16 @@
// Tauri doesn't have a Node.js server to do proper SSR
// so we use adapter-static with a fallback to index.html to put the site in SPA mode
// See: https://svelte.dev/docs/kit/single-page-apps
// See: https://v2.tauri.app/start/frontend/sveltekit/ for more info
import adapter from "@sveltejs/adapter-static";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
fallback: "index.html",
}),
},
};
export default config;