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