schemeta/frontend-react/vite.config.ts
2026-02-19 19:18:27 -05:00

19 lines
389 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/compile": "http://localhost:8787",
"/analyze": "http://localhost:8787",
"/layout": "http://localhost:8787",
"/health": "http://localhost:8787"
}
},
preview: {
port: 4173
}
});