What version of Bun is running?
No response
What platform is your computer?
windows11 24h2
What steps can reproduce the bug?
oha -z5s http://127.0.0.1:3000/demo.css
Bun.serve({
routes: {
"/demo.css":Bun.file("demo.css"),
"/demo.css":new Response(Bun.file("demo.css")),
}
})
Bun.serve({
routes: {
"/demo.css": {
GET() {
return new Response(Bun.file("demo.css"))
}
}
}
})
What is the expected behavior?
No response
What do you see instead?
No response
Additional information
No response
What version of Bun is running?
No response
What platform is your computer?
windows11 24h2
What steps can reproduce the bug?
oha -z5s http://127.0.0.1:3000/demo.cssWhat is the expected behavior?
No response
What do you see instead?
No response
Additional information
No response