ace-step15-endpoint / react-ui /vite.config.js
Andrew
Consolidate AF3/Qwen pipelines, endpoint templates, and setup docs
8bdd018
raw
history blame contribute delete
283 Bytes
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8008",
changeOrigin: true,
},
},
},
});