change to static adapter

This commit is contained in:
2025-12-29 14:02:51 +02:00
parent 908f22faca
commit 78d2f3139e
4 changed files with 3548 additions and 5 deletions

View File

@@ -1,12 +1,14 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: vitePreprocess(),
kit: { adapter: adapter() },
kit: {
adapter: adapter()
},
optimizeDeps: {
exclude: ['geolocation']
},
exclude: ['geolocation']
},
};
export default config;