Skip to content

Commit

Permalink
Add project name to examples/with-three-js create command (#17256)
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
284km committed Sep 21, 2020
1 parent 3400052 commit 31ab12a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/with-three-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)).

0 comments on commit 31ab12a

Please sign in to comment.