Files

20 lines
729 B
TypeScript
Raw Permalink Normal View History

import { defineConfig, loadEnv } from 'vite'
2026-08-14 12:43:11 +02:00
import react from '@vitejs/plugin-react'
// Ports are read from .env so two branch checkouts can run `npm run dev` side by
// side: give each folder its own WEB_PORT (Vite) and PORT (API). The /api proxy
// follows PORT so the web server always talks to its own backend.
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), '')
const webPort = Number(env.WEB_PORT || 5173)
const apiPort = Number(env.PORT || 8787)
return {
plugins: [react()],
server: {
port: webPort,
strictPort: true, // fail loudly on a clash instead of silently picking another port
proxy: { '/api': `http://127.0.0.1:${apiPort}` },
},
}
2026-08-14 12:43:11 +02:00
})