diff --git a/svelte.config.js b/svelte.config.js index de59b4e..d7d7710 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,4 +1,4 @@ -import adapter from '@sveltejs/adapter-auto'; +import adapter from '@sveltejs/adapter-static'; import { vitePreprocess } from '@sveltejs/kit/vite'; /** @type {import('@sveltejs/kit').Config} */ @@ -8,13 +8,7 @@ const config = { preprocess: vitePreprocess(), kit: { - adapter: adapter({ - pages: 'build', - assets: 'build', - fallback: undefined, - precompress: false, - strict: true - }) + adapter: adapter() }, trailingSlash: 'always' };