Skip to content

Commit 6e9dc0f

Browse files
Merge pull request #461 from microsoft/update-local-setup-guide
docs: add Node.js (LTS) and Yarn pre-install step to Frontend Setup
2 parents 065e861 + fa90db8 commit 6e9dc0f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/LocalSetupGuide.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,23 @@ To enable local debugging and ensure your application can access necessary Azure
9090
```
9191
VITE_API_ENDPOINT=https://localhost:52190
9292
```
93-
4. Install dependencies:
93+
4. Before installing dependencies, ensure Node.js (LTS) and Yarn are installed on your machine:
94+
- Recommended: install Node.js LTS (18.x or later) from https://nodejs.org
95+
- Install Yarn if it's not already available:
96+
```powershell
97+
npm install -g yarn
98+
```
99+
- Verify the installations:
100+
```powershell
101+
node -v
102+
npm -v
103+
yarn -v
104+
```
105+
5. Install dependencies:
94106
```powershell
95107
yarn install
96108
```
97-
5. Start the application:
109+
6. Start the application:
98110
```powershell
99111
yarn start
100112
```

0 commit comments

Comments
 (0)