import adapter from '@sveltejs/adapter-node'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: vitePreprocess({ style: { css: { lightningcss: { targets: ">0.2%", drafts: { customMedia: true } } } } }), kit: { adapter: adapter(), experimental: { remoteFunctions: true } }, compilerOptions: { experimental: { async: true } } }; export default config;