Hi guys,
I tried to start a project with Bun runtime from your example, but I'm not able to have a working server by following your documentation.
I also tried your project exemple here https://github.com/vercel/examples/blob/main/framework-boilerplates/bun. I deployed this example on vercel using framework: other because Bun isn't provided in the dropdown list
This example doesn't work. The Bun server doesn't start, all request fall in 404, only the index.html are exposed.
I tried many configuration on vercel.json but without success.
My latest one is that:
{ "$schema": "https://openapi.vercel.sh/vercel.json", "bunVersion": "1.4.x", "outputDirectory": "./packages/web/dist", "buildCommand": "bun run build", "installCommand": "bun install --frozen-lockfile", "framework": null }But the vercel function doesn't use the Bun runtime and use Node.js 24 instead. It's very confusing why it doens't works as expected like is it in your documentation.
I hope somebody have a solution to help me ;), maybe the issue is simple... and sorry if I haven't see that by my way.
Thanks in advance See you