diff --git a/svelte.config.js b/svelte.config.js index 301e785..67d81cf 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,10 +1,11 @@ -import adapter from '@sveltejs/adapter-auto'; +import adapter from '@sveltejs/adapter-static'; +// import adapter from '@sveltejs/adapter-auto'; /** @type {import('@sveltejs/kit').Config} */ const config = { - kit: { - adapter: adapter() - } + kit: { + adapter: adapter() + } }; export default config;