diff --git a/svelte.config.js b/svelte.config.js index 67ead8df6..31d7af086 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -3,7 +3,10 @@ import adapter from '@sveltejs/adapter-static' /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { - adapter: adapter() + adapter: adapter({ + pages: 'docs', + assets: 'docs' + }) } }