2025-03-31 19:03:23 +02:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
|
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
2025-03-31 23:07:29 +02:00
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
2025-03-31 19:03:23 +02:00
|
|
|
const config = {
|
|
|
|
|
preprocess: vitePreprocess(),
|
2025-03-31 23:07:29 +02:00
|
|
|
kit: {
|
|
|
|
|
adapter: adapter(),
|
|
|
|
|
},
|
2025-03-31 19:03:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|