blob: 0d48f920a4a4588a05568ecb3fc09d354a507b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import adapterStatic from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapterStatic({
fallback: '200.html'
})
}
};
export default config;
|