Select the types of activity you want to include in your feed.
1import tailwindcss from '@tailwindcss/vite'; 2import { sveltekit } from '@sveltejs/kit/vite'; 3import { defineConfig } from 'vite'; 4 5export default defineConfig({ 6 plugins: [tailwindcss(), sveltekit()], 7 server: { 8 host: '127.0.0.1', 9 port: 5173 10 } 11});