Skip to content

Commit a28c737

Browse files
authored
docs: fix typo, VuePress to VitePress (#148)
1 parent 242fcc1 commit a28c737

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/guide/deploy.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ The following guides are based on some shared assumptions:
44

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

99
```json
1010
{
1111
"scripts": {
12-
"docs:build": "vuepress build docs",
13-
"docs:serve": "vuepress serve docs"
12+
"docs:build": "vitepress build docs",
13+
"docs:serve": "vitepress serve docs"
1414
}
1515
}
1616
```
@@ -41,7 +41,7 @@ You may configure the port of the server py passing `--port` flag as an argument
4141
```json
4242
{
4343
"scripts": {
44-
"docs:serve": "vuepress serve docs --port 8080"
44+
"docs:serve": "vitepress serve docs --port 8080"
4545
}
4646
}
4747
```

docs/guide/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting Started
22

3-
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.
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.
44

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

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

17-
- **Step. 3:** Install VuePress locally.
17+
- **Step. 3:** Install VitePress locally.
1818

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

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

49-
By now, you should have a basic but functional VuePress documentation site.
49+
By now, you should have a basic but functional VitePress documentation site.
5050

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

0 commit comments

Comments
 (0)