feat(admin-portal): 完整实现 admin-portal 管理端微前端

包含 src 全部实现、Dockerfile、配置文件等
This commit is contained in:
SpecialX
2026-07-10 19:09:12 +08:00
parent 02d09c47fa
commit b3511910d1
69 changed files with 11955 additions and 693 deletions

View File

@@ -0,0 +1,10 @@
/**
* MSW Browser Worker
*
* 仲裁 ARB-004 §4开发期 MSW 拦截所有 GraphQL/HTTP 请求
* 启用条件NEXT_PUBLIC_API_MOCKING=enabled
*/
import { setupWorker } from "msw/browser";
import { handlers } from "./handlers";
export const worker = setupWorker(...handlers);