mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
6 lines
215 B
JavaScript
6 lines
215 B
JavaScript
// src/mocks/browser.js
|
|
import { setupWorker } from "msw";
|
|
import { handlers } from "./handlers";
|
|
// This configures a Service Worker with the given request handlers.
|
|
export const worker = setupWorker(...handlers);
|