Next.js dev server now runs on Bun (#14566)

This commit is contained in:
Minsoo Choo
2024-10-14 15:11:30 -04:00
committed by GitHub
parent 47ff4748bd
commit e6ea389e4e

View File

@@ -2,12 +2,6 @@
name: Build an app with Next.js and Bun
---
{% callout %}
The Next.js [App Router](https://nextjs.org/docs/app) currently relies on Node.js APIs that Bun does not yet implement. The guide below uses Bun to initialize a project and install dependencies, but it uses Node.js to run the dev server.
{% /callout %}
---
Initialize a Next.js app with `create-next-app`. This automatically installs dependencies using `npm`.
```sh