Skip to content

Commit

Permalink
default setup docs update
Browse files Browse the repository at this point in the history
Improved installation docs due to
steven-tey#47

- yarn, pnpm, bun starters
- npm install fails warning
  • Loading branch information
andriilive committed Nov 16, 2023
1 parent c8ca9a1 commit 0e7af29
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,26 @@ You can deploy this template to Vercel with the button below:

You can also clone & create this repo locally with the following command:

> ⚠️ **Avoid** installation with `npm` and `npx` [due to this issue](https://github.com/steven-tey/precedent/issues/47)
```bash
yarn create next-app precedent --example "https://github.com/steven-tey/precedent"
pnpm create next-app precedent --example "https://github.com/steven-tey/precedent"
bunx create-next-app precedent --example "https://github.com/steven-tey/precedent"

# NOT RECOMMENDED
npx create-next-app precedent --example "https://github.com/steven-tey/precedent"
```

Then, install the dependencies with your package manager of choice:
Install the dependencies with your package manager of choice:

```bash
npm i
yarn
pnpm i
bun i

# NOT RECOMMENDED
npm i
```

## Tech Stack + Features
Expand Down

0 comments on commit 0e7af29

Please sign in to comment.