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
Bun.serve({port: process.env.NITRO_PORT||process.env.PORT||3e3,websocket: void0,asyncfetch(req,server2){consturl=newURL(req.url);if(url.pathname==="/redirect"){constemptyStream=newReadableStream({start(controller){// Immediately close the stream to make it emptycontroller.close();}});returnnewResponse(emptyStream,{status: 307,headers: {location: "/"}});}returnnewResponse("Hello world");}});
navigate to localhost:3000/redirect
Nothing will happen, the response the browser receives is empty (no headers or body) and no redirect.
What is the expected behavior?
It should redirect to / and show Hello world in the browser.
What do you see instead?
White screen, because the response contains no body or headers.
Additional information
No response
The text was updated successfully, but these errors were encountered:
As context, this breaks new TanStack Starts framework, basically when using Bun all redirects will do nothing and an empty page will be rendered. TanStack/router#2819
What version of Bun is running?
1.1.36+ededc168c
What platform is your computer?
Microsoft Windows NT 10.0.22631.0 x64
What steps can reproduce the bug?
Run this code:
Nothing will happen, the response the browser receives is empty (no headers or body) and no redirect.
What is the expected behavior?
It should redirect to / and show Hello world in the browser.
What do you see instead?
White screen, because the response contains no body or headers.
Additional information
No response
The text was updated successfully, but these errors were encountered: