diff options
author | 2023-09-13 20:47:36 -0700 | |
---|---|---|
committer | 2023-09-13 20:47:36 -0700 | |
commit | 6ac70a6dd2449da987462f2cdcdf80c770abadaf (patch) | |
tree | fc546e26ff815284f0afee24e855443f69e5d092 /docs/guides/ecosystem/nextjs.md | |
parent | a8cef7ae75ad9f21a5500fd8c1941629eddd5794 (diff) | |
download | bun-6ac70a6dd2449da987462f2cdcdf80c770abadaf.tar.gz bun-6ac70a6dd2449da987462f2cdcdf80c770abadaf.tar.zst bun-6ac70a6dd2449da987462f2cdcdf80c770abadaf.zip |
Use bun create everywhere
Diffstat (limited to 'docs/guides/ecosystem/nextjs.md')
-rw-r--r-- | docs/guides/ecosystem/nextjs.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/ecosystem/nextjs.md b/docs/guides/ecosystem/nextjs.md index 4d3be8cfc..a3ad8550c 100644 --- a/docs/guides/ecosystem/nextjs.md +++ b/docs/guides/ecosystem/nextjs.md @@ -11,7 +11,7 @@ The Next.js [App Router](https://nextjs.org/docs/app) currently relies on Node.j Initialize a Next.js app with `create-next-app`. This automatically installs dependencies using `npm`. ```sh -$ bunx create-next-app +$ 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 |