We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2fa0098 + aeb64b7 commit 729393cCopy full SHA for 729393c
src/content/1/en/part1a.md
@@ -15,7 +15,13 @@ The easiest way to get started by far is by using a tool called
15
Let's create an application called <i>part1</i>, navigate to its directory and install the libraries:
16
17
```bash
18
+# npm 6.x
19
npm create vite@latest part1 --template react
20
+
21
+# npm 7+, extra double-dash is needed:
22
+npm create vite@latest part1 -- --template react```
23
24
+```bash
25
cd part1
26
npm install
27
```
0 commit comments