diff --git a/svelte.config.js b/svelte.config.js index 20636f2..9226725 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -5,9 +5,10 @@ import { vitePreprocess } from '@sveltejs/kit/vite'; const config = { extensions: ['.svelte'], preprocess: [vitePreprocess()], - kit: { - adapter: adapter() + adapter: adapter({ + fallback: '404.html' + }) } }; export default config;