Skip to content

Commit

Permalink
docs: fix typo, VuePress to VitePress (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
skywalker512 authored Nov 24, 2020
1 parent 242fcc1 commit a28c737
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/guide/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ The following guides are based on some shared assumptions:

- You are placing your docs inside the `docs` directory of your project;
- You are using the default build output location (`.vitepress/dist`);
- VuePress is installed as a local dependency in your project, and you have setup the following npm scripts:
- VitePress is installed as a local dependency in your project, and you have setup the following npm scripts:

```json
{
"scripts": {
"docs:build": "vuepress build docs",
"docs:serve": "vuepress serve docs"
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
}
}
```
Expand Down Expand Up @@ -41,7 +41,7 @@ You may configure the port of the server py passing `--port` flag as an argument
```json
{
"scripts": {
"docs:serve": "vuepress serve docs --port 8080"
"docs:serve": "vitepress serve docs --port 8080"
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting Started

This section will help you build a basic VuePress documentation site from ground up. If you already have an existing project and would like to keep documentation inside the project, start from Step 3.
This section will help you build a basic VitePress documentation site from ground up. If you already have an existing project and would like to keep documentation inside the project, start from Step 3.

- **Step. 1:** Create and change into a new directory.

Expand All @@ -14,7 +14,7 @@ This section will help you build a basic VuePress documentation site from ground
$ yarn init
```

- **Step. 3:** Install VuePress locally.
- **Step. 3:** Install VitePress locally.

```bash
$ yarn add --dev vitepress
Expand Down Expand Up @@ -46,6 +46,6 @@ This section will help you build a basic VuePress documentation site from ground

VitePress will start a hot-reloading development server at http://localhost:3000.

By now, you should have a basic but functional VuePress documentation site.
By now, you should have a basic but functional VitePress documentation site.

When your documentation site starts to take shape, be sure to read the [deployment guide](./deploy).

0 comments on commit a28c737

Please sign in to comment.