veza/apps/web/src/mocks/browser.ts

6 lines
200 B
TypeScript
Raw Normal View History

import { setupWorker } from 'msw/browser';
import { handlers } from './handlers';
// This configures a Service Worker with the given request handlers.
export const worker = setupWorker(...handlers);