Skip to content

Commit 4f81389

Browse files
committed
Fix quickstart command.
1 parent 6cb1029 commit 4f81389

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/docs/engineering/app/app-quickstart.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd app/
2020
# Install dependencies
2121
npm install
2222
# Run the app
23-
npm run dev
23+
npm run start
2424
# Navigate to the URL mentioned in the terminal
2525

2626
```
@@ -73,10 +73,10 @@ To setup ESLint, refer to: [Quick Start Basics](../quick-start-basics#setup-esli
7373

7474
### Development Mode
7575

76-
The application uses vite to hot reload itself automatically if there are any changes to any files. To start the App in dev mode, run:
76+
The application uses Vite to hot reload itself automatically if there are any changes to any files. To start the App in dev mode, run:
7777

7878
```bash
79-
npm run dev
79+
npm run start
8080
```
8181

8282
Any changes inside the `packages` folder won't recompile automatically and so will require restarting the entire development server by just running again: `npm run dev`

0 commit comments

Comments
 (0)