2026-03-31 14:48:36 +02:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
|
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
|
const config = {
|
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
|
kit: {
|
2026-04-28 11:27:57 +02:00
|
|
|
adapter: adapter({ out: 'build' }),
|
|
|
|
|
csrf: {
|
|
|
|
|
checkOrigin: false
|
|
|
|
|
}
|
2026-03-31 14:48:36 +02:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|