Skip to content

Commit

Permalink
Merge pull request #3880 from k-zhou/patch-2
Browse files Browse the repository at this point in the history
suggestion to amend part 1a
  • Loading branch information
mluukkai authored Nov 20, 2024
2 parents d01cbc5 + 489b01a commit b2bd07a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/content/1/en/part1a.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ We will now start getting familiar with probably the most important topic of thi

The easiest way to get started by far is by using a tool called [Vite](https://vitejs.dev/).

Let's create an application called <i>part1</i>, navigate to its directory and install the libraries:
Let's create an application called <i>introdemo</i>, navigate to its directory and install the libraries:

```bash
# npm 6.x (outdated, but still used by some):
npm create vite@latest part1 --template react
npm create vite@latest introdemo --template react

# npm 7+, extra double-dash is needed:
npm create vite@latest part1 -- --template react
npm create vite@latest introdemo -- --template react
```

```bash
cd part1
cd introdemo
npm install
```

Expand Down

0 comments on commit b2bd07a

Please sign in to comment.