import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], server: { port: 5173, // In dev, proxy /api/* to the Node server so the SPA and the API look // same-origin to the browser. Run `npm run dev:server` in another // terminal first. proxy: { "/api": { target: "http://localhost:3000", changeOrigin: false, }, }, }, });