19 lines
433 B
JavaScript
19 lines
433 B
JavaScript
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;
|