删除实时行情、盘口深度和监控规则功能

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-04 17:32:39 +08:00
parent 0474e5fb46
commit 9904854cc1
47 changed files with 107 additions and 6059 deletions
-10
View File
@@ -16,16 +16,6 @@ export default defineConfig({
// dev 时 /api 转发到 FastAPI
'/api': {
target: 'http://localhost:3018',
// SSE 端点需要禁用缓冲
configure: (proxy) => {
proxy.on('proxyReq', (_proxyReq, req) => {
if (req.url?.includes('/stream')) {
_proxyReq.setHeader('Accept', 'text/event-stream')
_proxyReq.setHeader('Cache-Control', 'no-cache')
_proxyReq.setHeader('Connection', 'keep-alive')
}
})
},
},
'/health': 'http://localhost:3018',
},