diff --git a/svelte.config.js b/svelte.config.js index 8986d4f..ad9fbc9 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,4 @@ import adapterAuto from '@sveltejs/adapter-auto' -import adapterNode from '@sveltejs/adapter-node' import preprocess from 'svelte-preprocess' /** @type {import('@sveltejs/kit').Config} */ @@ -15,7 +14,7 @@ const config = { ], kit: { - adapter: process.env.NODE_SERVER ? adapterNode() : adapterAuto(), + adapter: adapterAuto(), csrf: { checkOrigin: false, },