ui: 接入千问流式聊天并增强请求稳定性;
All checks were successful
CI / build (push) Successful in 1m52s

将首页从 mock 数据切换为真实流式会话,统一 API 网络层并支持 SSE 增量解析、超时与断线重试,提升前端在跨域代理和网络抖动场景下的可用性。

Made-with: Cursor
This commit is contained in:
2026-04-15 23:03:54 +08:00
parent f46b50fc1e
commit 038dc5e918
6 changed files with 409 additions and 66 deletions

View File

@@ -12,4 +12,14 @@ export default defineConfig({
}),
tailwindcss(),
],
server: {
// 允许局域网通过 IP 访问开发服务
host: "0.0.0.0",
proxy: {
"/api": {
target: "http://localhost:3000",
changeOrigin: true,
},
},
},
});