an3dree's picture
frontend HF
801e523
Raw
History Blame Contribute Delete
212 Bytes
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": "http://localhost:7860",
},
},
});