your personal website on atproto - mirror blento.app
at fix/duplicate-each-keys 30 lines 543 B view raw
1import adapter from '@sveltejs/adapter-cloudflare'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 // Consult https://svelte.dev/docs/kit/integrations 7 // for more information about preprocessors 8 preprocess: vitePreprocess(), 9 10 kit: { 11 adapter: adapter(), 12 paths: { 13 base: '' 14 }, 15 experimental: { 16 remoteFunctions: true 17 } 18 }, 19 20 vitePlugin: { 21 inspector: true 22 }, 23 compilerOptions: { 24 experimental: { 25 async: true 26 } 27 } 28}; 29 30export default config;