fix(vite): forward duplex fetch option in dispatcher#3561
Merged
Conversation
|
@phryneas is attempting to deploy a commit to the Nitro Team on Vercel. A member of the Team first needs to authorize it. |
duplex RequestInit option in dispatcher
pi0
approved these changes
Sep 2, 2025
duplex fetch option in dispatcher
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔗 Linked issue
No issue found.
❓ Type of change
📚 Description
I encountered this when returning an
AsyncIterableinstance as the body of aResponsein a TanStack Start api route handler using thenitro/viteplugin fromnitro-nightly@3.0.0-20250902-103829-4daac97b.That resulted in an unhandled error:
It seems that when the
bodyof afetchrequest is aReadableStream, theduplexoption must be set.I tested this locally by making the same change manually to the
.output/server/chunks/_/server.mjsfile, and that resolved the issue.I also have this on Vercel. You can try this API call without this PR and see it fail:
This is the same deployment after apollographql/apollo-client-integrations@1a9930f, which patches the changes from this PR:
📝 Checklist