docs: mention changing directory in installation guide (#23680)

This commit is contained in:
Boby Tiwari 2023-11-16 20:45:18 +05:30 committed by GitHub
parent 1b6f738fb8
commit 3506f48ec3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,12 @@ Open your project folder in Visual Studio Code:
code <project-name> code <project-name>
``` ```
Or change directory into your new project from your terminal:
```bash
cd <project-name>
```
Install the dependencies: Install the dependencies:
::code-group ::code-group
@ -81,7 +87,6 @@ npm install
``` ```
```bash [pnpm] ```bash [pnpm]
# Make sure you have `shamefully-hoist=true` in `.npmrc` before running pnpm install
pnpm install pnpm install
``` ```