1e65fd6b0f
SvelteKit in SPA mode with Tauri v2. Builds and produces .deb bundle. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
290 B
TypeScript
6 lines
290 B
TypeScript
// 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
|
|
export const ssr = false;
|