From 49e0688a03791e365075dd1b217fa97e76ac8ee2 Mon Sep 17 00:00:00 2001 From: Borja Robert Date: Sat, 11 Feb 2023 22:23:31 +0100 Subject: [PATCH] adapter static --- svelte.config.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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;