I'm trying to integrate MSW into my next js project. The JWT tokens are set in cookies. Whenever any API arent mocked I want to bypass the request and send it to the server, but in my case, the request is sent without the cookies (HTTPOnly), hence it will be an error. How can I handle this?
worker.start({
onUnhandledRequest: 'bypass',
});