[READ-ONLY] Mirror of https://github.com/flo-bit/svelte-cloudflare-statusphere. statusphere.atmo.tools
atproto cloudflare-workers oauth svelte
0

Configure Feed

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

328 B 13 lines
1import tailwindcss from '@tailwindcss/vite'; 2import { sveltekit } from '@sveltejs/kit/vite'; 3import { defineConfig } from 'vite'; 4import { DEV_PORT } from './src/lib/atproto/port'; 5 6export default defineConfig({ 7 plugins: [sveltekit(), tailwindcss()], 8 server: { 9 host: '127.0.0.1', 10 port: DEV_PORT, 11 allowedHosts: [] 12 } 13});