fedi-feed-router/frontend/vite.config.ts

15 lines
254 B
TypeScript
Raw Permalink Normal View History

2025-08-03 01:34:11 +02:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 5173,
watch: {
usePolling: true,
},
},
})