atmo.rsvp
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 318 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 preprocess: vitePreprocess(), 7 8 kit: { 9 adapter: adapter(), 10 experimental: { 11 remoteFunctions: true 12 } 13 } 14}; 15 16export default config;