atmo.rsvp
3
fork

Configure Feed

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

at main 14 lines 454 B view raw
1import tailwindcss from '@tailwindcss/vite'; 2import { sveltekit } from '@sveltejs/kit/vite'; 3import { defineConfig } from 'vite'; 4import { DEV_PORT } from './src/lib/atproto/port'; 5import { sveltekitOG } from '@ethercorps/sveltekit-og/plugin'; 6 7export default defineConfig({ 8 plugins: [sveltekit(), tailwindcss(), sveltekitOG()], 9 server: { 10 host: '127.0.0.1', 11 port: DEV_PORT, 12 allowedHosts: ['described-yamaha-fame-social.trycloudflare.com'] 13 } 14});