diff --git a/svelte.config.js b/svelte.config.js index e744595..dc6e0f2 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,6 +1,19 @@ import adapter from '@sveltejs/adapter-node'; /** @type {import('@sveltejs/kit').Config} */ -const config = { kit: { adapter: adapter() } }; +const config = { + kit: { + adapter: adapter(), + experimental: { + remoteFunctions: true + } + }, + + compilerOptions: { + experimental: { + async: true + } + } +}; export default config;