Skip to content

Commit b8cfdfb

Browse files
authored
Merge pull request #3227 from 63r6o/patch-1
fix: Correct startup command in part9d.md
2 parents 345ff57 + 291819e commit b8cfdfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ We can use [Vite](https://vitejs.dev/) to create a TypeScript app specifying a t
2525
npm create vite@latest my-app-name -- --template react-ts
2626
```
2727

28-
After running the command, you should have a complete basic React app that uses TypeScript. You can start the app by running *npm start* in the application's root.
28+
After running the command, you should have a complete basic React app that uses TypeScript. You can start the app by running *npm run dev* in the application's root.
2929

3030
If you take a look at the files and folders, you'll notice that the app is not that different from one using pure JavaScript. The only differences are that the *.jsx* files are now *.tsx* files, they contain some type annotations, and the root directory contains a *tsconfig.json* file.
3131

0 commit comments

Comments
 (0)