From f3030fe7343f6f5716f42d9e8da23e7956b188e5 Mon Sep 17 00:00:00 2001 From: Kazuma Furuhashi Date: Tue, 22 Sep 2020 02:02:25 +0900 Subject: [PATCH] Add project name to examples/with-three-js create command (#17256) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a change to add the project name as in the other examples. When we run with the current create command, we are asked for the project name. As follows: ``` $ npx create-next-app --example with-three-js ? What is your project named? › my-app ``` --- examples/with-three-js/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/with-three-js/README.md b/examples/with-three-js/README.md index 9c7ca3d13eb70..1192d4f54eb61 100644 --- a/examples/with-three-js/README.md +++ b/examples/with-three-js/README.md @@ -17,9 +17,9 @@ Deploy the example using [Vercel](https://vercel.com): Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app) with [npm](https://docs.npmjs.com/cli/init) or [Yarn](https://yarnpkg.com/lang/en/docs/cli/create/) to bootstrap the example: ```bash -npx create-next-app --example with-three-js +npx create-next-app --example with-three-js with-three-js-app # or -yarn create next-app --example with-three-js +yarn create next-app --example with-three-js with-three-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)).