Skip to content

Commit 5136ad7

Browse files
chore(vite installation guide): add installation guide using pnpm (#1374)
* chore(installation guide): add installation guide using pmpm * chore(installation guide): add installation guide using pmpm * chore(vite installation guide): commit suggestion Co-authored-by: skirtle <[email protected]> * chore(vite installation guide): commit suggestion Co-authored-by: skirtle <[email protected]> Co-authored-by: skirtle <[email protected]>
1 parent 1dcdb5a commit 5136ad7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/guide/installation.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Detailed release notes for each version are available on [GitHub](https://github
1818
## Vue Devtools
1919

2020
> Currently in Beta - Vuex and Router integration is still WIP
21-
21+
2222
<VideoLesson href="https://vueschool.io/lessons/using-vue-dev-tools-with-vuejs-3?friend=vuejs" title="Learn how to install Vue Devtools on Vue School">Learn how to install and use Vue Devtools in a free Vue School lesson</VideoLesson>
2323

2424
When using Vue, we recommend also installing the [Vue Devtools](https://github.com/vuejs/vue-devtools#vue-devtools) in your browser, allowing you to inspect and debug your Vue applications in a more user-friendly interface.
@@ -117,6 +117,15 @@ $ yarn
117117
$ yarn dev
118118
```
119119

120+
Or with pnpm:
121+
122+
```bash
123+
$ pnpm create vite <project-name> -- --template vue
124+
$ cd <project-name>
125+
$ pnpm install
126+
$ pnpm dev
127+
```
128+
120129
## Explanation of Different Builds
121130

122131
In the [`dist/` directory of the npm package](https://cdn.jsdelivr.net/npm/[email protected]/dist/) you will find many different builds of Vue.js. Here is an overview of which `dist` file should be used depending on the use-case.

0 commit comments

Comments
 (0)