From 4b5551d230e7d403676624a1351cd7b0f2cd1872 Mon Sep 17 00:00:00 2001 From: Samyar <75088294+samyarkd@users.noreply.github.com> Date: Wed, 10 Sep 2025 12:42:22 +0330 Subject: [PATCH] Update nextjs.md for create next-app (#21853) ### What does this PR do? Updating documentation for `bun create next-app` to be just as the latest version of `create next-app`. * App Router is no longer experimental * TailwindCSS has been added ### How did you verify your code works? I verified the changes by making sure the it's correct. --- docs/guides/ecosystem/nextjs.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/ecosystem/nextjs.md b/docs/guides/ecosystem/nextjs.md index e54a7bca61..6d0e3ae66e 100644 --- a/docs/guides/ecosystem/nextjs.md +++ b/docs/guides/ecosystem/nextjs.md @@ -9,8 +9,9 @@ $ bun create next-app ✔ What is your project named? … my-app ✔ Would you like to use TypeScript with this project? … No / Yes ✔ Would you like to use ESLint with this project? … No / Yes +✔ Would you like to use Tailwind CSS? ... No / Yes ✔ Would you like to use `src/` directory with this project? … No / Yes -✔ Would you like to use experimental `app/` directory with this project? … No / Yes +✔ Would you like to use App Router? (recommended) ... No / Yes ✔ What import alias would you like configured? … @/* Creating a new Next.js app in /path/to/my-app. ```