Files
Edu/apps/admin-portal/src/mocks/browser.ts
SpecialX b3511910d1 feat(admin-portal): 完整实现 admin-portal 管理端微前端
包含 src 全部实现、Dockerfile、配置文件等
2026-07-10 19:09:12 +08:00

11 lines
285 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 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);