thread-master/backend/web/vite.config.ts

17 lines
302 B
TypeScript
Raw Normal View History

2026-06-30 09:10:23 +00:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
host: "127.0.0.1",
port: 5173,
proxy: {
"/api": {
target: "http://127.0.0.1:8890",
changeOrigin: true
}
}
}
});