disable origin check

This commit is contained in:
2026-04-28 11:27:57 +02:00
parent d70fac4f49
commit c007897166

View File

@@ -5,7 +5,10 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = { const config = {
preprocess: vitePreprocess(), preprocess: vitePreprocess(),
kit: { kit: {
adapter: adapter({ out: 'build' }) adapter: adapter({ out: 'build' }),
csrf: {
checkOrigin: false
}
} }
}; };