your personal website on atproto - mirror blento.app
at switch-map 23 lines 457 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 }, 16 compilerOptions: { 17 experimental: { 18 async: true 19 } 20 } 21}; 22 23export default config;