Skip to content

Commit 291819e

Browse files
authored
fix: Correct startup command in part9d.md
The original text mistakenly stated that the React app should be started with `npm start` in the `part9d.md` file. However, the application was created using Vite, and the correct command to start the app is `npm run dev`.
1 parent 345ff57 commit 291819e

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)