simpy_terms/frontend/vite.config.ts

14 lines
301 B
TypeScript
Raw Permalink Normal View History

import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": {
target: process.env.VITE_GRAPH_API_URL ?? "http://127.0.0.1:8765",
changeOrigin: true,
},
},
},
});