安装
安装 vitepress
官网链接:https://vitepress.dev/zh/guide/getting-started
sh
$ npm add -D vitepress
1
sh
$ pnpm add -D vitepress
1
sh
$ yarn add -D vitepress
1
sh
$ yarn add -D vitepress vue
1
sh
$ bun add -D vitepress
1
安装向导
VitePress 附带一个命令行设置向导,可以帮助你构建一个基本项目。安装后,通过运行以下命令启动向导(全部默认就行):
sh
$ npx vitepress init
1
sh
$ pnpm vitepress init
1
sh
$ yarn vitepress init
1
sh
$ bun vitepress init
1
将需要回答几个简单的问题:
┌ Welcome to VitePress!
│
◇ Where should VitePress initialize the config?
│ ./docs
│
◇ Site title:
│ My Awesome Project
│
◇ Site description:
│ A VitePress Site
│
◆ Theme:
│ ● Default Theme (Out of the box, good-looking docs)
│ ○ Default Theme + Customization
│ ○ Custom Theme
└
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16