T005-T006

This commit is contained in:
2025-09-18 10:04:43 -06:00
parent 8e82274d30
commit 28f8907259
16 changed files with 2748 additions and 2 deletions

18
apps/web/svelte.config.js Normal file
View File

@@ -0,0 +1,18 @@
import adapter from '@sveltejs/adapter-static';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess({ postcss: true }),
kit: {
adapter: adapter({
fallback: '200.html'
}),
// Service worker wiring comes in T008
paths: {
// supports GitHub Pages-like hosting later; keep default for now
}
}
};
export default config;