Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

README: add yarn alternative for 3rd setup step #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ In the desired folder, run the following command to start the VuePress site gene

```shell
npx create-vuepress-site
# yarn create vuepress-site
# or: yarn create vuepress-site
```

This will create a scaffolded documentation site in the `docs` directory that is enclosed from the rest of the folder.
Expand All @@ -23,10 +23,11 @@ cd docs

# Install dependencies
npm install
# yarn install
# or: yarn install

# Start local dev server
npm run dev
# or: yarn run dev
```

By default, you should now see your scaffolded VuePress docs site at https://localhost:8080!
Expand Down