audio streaming app plyr.fm
38
fork

Configure Feed

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

at b9d0a2c78c683c07f7cbbcaa83a52f32cde756a4 19 lines 387 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 platformProxy: { 11 configPath: 'wrangler.toml', 12 experimentalJsonConfig: false, 13 persist: false 14 } 15 }) 16 } 17}; 18 19export default config;