From 6a0f934a2f658fb05e9692e1cdcd4569fbbdebff Mon Sep 17 00:00:00 2001 From: hiperman Date: Sat, 21 Feb 2026 19:39:47 -0500 Subject: [PATCH] add remote function support --- svelte.config.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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;