From e6ea389e4ea9ed2dfbded376d014609c44452fd6 Mon Sep 17 00:00:00 2001 From: Minsoo Choo Date: Mon, 14 Oct 2024 15:11:30 -0400 Subject: [PATCH] Next.js dev server now runs on Bun (#14566) --- docs/guides/ecosystem/nextjs.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/guides/ecosystem/nextjs.md b/docs/guides/ecosystem/nextjs.md index d8bf337c27..0d82b64e17 100644 --- a/docs/guides/ecosystem/nextjs.md +++ b/docs/guides/ecosystem/nextjs.md @@ -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