top poasts
highlights.waow.tech
1import adapter from '@sveltejs/adapter-static';
2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 preprocess: vitePreprocess(),
7
8 kit: {
9 adapter: adapter({
10 fallback: 'index.html'
11 })
12 }
13};
14
15export default config;