feat: 添加线索引擎、NLQ、场景检测、前端界面等核心功能模块

This commit is contained in:
freedakgmail
2026-06-16 08:15:15 +08:00
parent 7b1e2b10a8
commit 48340f6011
62 changed files with 6772 additions and 65 deletions
+16
View File
@@ -0,0 +1,16 @@
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",
},
},
});