17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// 开发期通过代理转发到本地后端(数据不出域:仅内网/本机)
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/clues": "http://localhost:8000",
|
|
"/datahub": "http://localhost:8000",
|
|
"/nlq": "http://localhost:8000",
|
|
"/health": "http://localhost:8000",
|
|
},
|
|
},
|
|
});
|