import adapter from '@sveltejs/adapter-node'; /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { adapter: adapter(), experimental: { remoteFunctions: true }, alias: { '@client': 'src/client/client.gen.ts', '@/**': './src/lib/*', } }, compilerOptions: { experimental: { async: true } }, vitePlugin: { dynamicCompileOptions: ({ filename }) => filename.includes('node_modules') ? undefined : { runes: true } } }; export default config;