your personal website on atproto - mirror
blento.app
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 compilerOptions: {
21 experimental: {
22 async: true
23 }
24 }
25};
26
27export default config;