Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
docs: update wording to proper usage
  • Loading branch information
d-pollard committed Sep 2, 2020
commit be9d466b6f335d38db9d53d683781b5bce01014b
24 changes: 12 additions & 12 deletions packages/docs/docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ This section will help you build a basic VuePress documentation site from ground

3. Install VuePress locally

<code-group>
<code-block title="YARN" :active="true">
```bash
yarn add -D vuepress
```
</code-block>
<code-group>
<code-block title="YARN" :active="true">
```bash
yarn add -D vuepress
```
</code-block>

<code-block title="NPM">
```bash
npm install -D vuepress
```
</code-block>
</code-group>
<code-block title="NPM">
```bash
npm install -D vuepress
```
</code-block>
</code-group>

4. Create your first document

Expand Down
2 changes: 1 addition & 1 deletion packages/docs/docs/theme/default-theme-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ This will render `.vuepress/components/SpecialLayout.vue` for the given page.

## Ejecting

You can copy the default theme source code into `.vuepress/theme` to fully customize the theme using the `vuepress eject [targetDir]` command. If you didn't install Vuepress globally, run `./node_modules/.bin/vuepress eject`.
You can copy the default theme source code into `.vuepress/theme` to fully customize the theme using the `vuepress eject [targetDir]` command. If you didnt install VuePress globally, run `./node_modules/.bin/vuepress eject`.

::: warning
Once you eject, you are on your own and **won’t** be receiving future updates or bugfixes to the default theme even if you upgrade VuePress.
Expand Down