diff --git a/frontend/svelte.config.js b/frontend/svelte.config.js index 6bc06ad..410156c 100644 --- a/frontend/svelte.config.js +++ b/frontend/svelte.config.js @@ -5,7 +5,10 @@ import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; const config = { preprocess: vitePreprocess(), kit: { - adapter: adapter({ out: 'build' }) + adapter: adapter({ out: 'build' }), + csrf: { + checkOrigin: false + } } };