[READ-ONLY] Mirror of https://github.com/flo-bit/atmo-tools. atmo.tools
0

Configure Feed

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

atmo-tools / vite.config.ts
308 B 12 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 } 12});