diff --git a/docs/guides/ecosystem/nextjs.md b/docs/guides/ecosystem/nextjs.md index c3147d703bb2e0..1183b430e07c0c 100644 --- a/docs/guides/ecosystem/nextjs.md +++ b/docs/guides/ecosystem/nextjs.md @@ -15,6 +15,14 @@ $ bun create next-app Creating a new Next.js app in /path/to/my-app. ``` +You can specify a starter template using the `--example` flag. + +```sh +$ bun create next-app --example with-supabase +✔ What is your project named? … my-app +... +``` + --- To start the dev server with Bun, run `bun --bun run dev` from the project root.