Since the introduction of the internal dev server being forked as a child process bun --bun run dev and bunx --bun nuxt dev will exit silently with a zero code.
This happens because child_process.fork() is only partially implemented in Bun. Specifically Bun does not do IPC on child processes yet.
This is an issue in Bun and not Nuxi.