import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; // The SPA talks to the unibus gateway over plain fetch + EventSource; the // gateway URL is chosen at runtime on the connect screen, so nothing is proxied // here. The dev server runs on a fixed port so the gateway's permissive CORS is // predictable. export default defineConfig({ plugins: [react()], server: { port: 5173, host: true, }, });