You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling for Node.js, the package uses undici to shim for Request/Response, etc.. however, this causes issues in production, when using code that checks for response instanceof Response or similar.
Because the response got is not an actual Response, it causes issues. I think undici should be dropped since the fetch API is supported in Node.js 18+
The text was updated successfully, but these errors were encountered:
When compiling for Node.js, the package uses
undici
to shim forRequest
/Response
, etc.. however, this causes issues in production, when using code that checks forresponse instanceof Response
or similar.Because the response got is not an actual
Response
, it causes issues. I thinkundici
should be dropped since the fetch API is supported in Node.js 18+The text was updated successfully, but these errors were encountered: