README / app /frontend /vite.config.ts
CJGibs's picture
Build Aether Voice Studio Docker Space
703a33a
raw
history blame contribute delete
270 Bytes
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
"/api": "http://localhost:7860",
"/public": "http://localhost:7860",
},
},
});