import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** Static SPA: prerender the shell, fetch data from the API at runtime. * FastAPI serves the built `build/` directory. */ export default { preprocess: vitePreprocess(), kit: { adapter: adapter({ fallback: 'index.html' }), }, };