summaryrefslogtreecommitdiff
path: root/client/svelte.config.js
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-06-24 09:03:28 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-06-24 09:15:10 +0200
commit4b6a8240d8a020dcd4abb2755ebbbc11f966393e (patch)
tree4373f3668d7702fc3da860fa98ced1bdf262116e /client/svelte.config.js
parentbdba7f5c449c0ac77bbd2420c5bc086a7e369a91 (diff)
client: Replace @sveltejs/adapter-auto with adapter-static
Diffstat (limited to 'client/svelte.config.js')
-rw-r--r--client/svelte.config.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/client/svelte.config.js b/client/svelte.config.js
index 8ef344d..c138f77 100644
--- a/client/svelte.config.js
+++ b/client/svelte.config.js
@@ -1,4 +1,4 @@
-import adapter from '@sveltejs/adapter-auto';
+import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
@@ -8,9 +8,6 @@ const config = {
preprocess: vitePreprocess(),
kit: {
- // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
- // See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
};