Implement the mobile dashboard frontend, admin overview APIs, report archive export, and local dev proxy so the boss dashboard can run against real backend data while preserving MSW demos. Co-authored-by: Cursor <cursoragent@cursor.com>
5 lines
128 B
TypeScript
5 lines
128 B
TypeScript
import { setupWorker } from 'msw/browser'
|
|
import { handlers } from './handlers'
|
|
|
|
export const worker = setupWorker(...handlers)
|