🏛️ GitHub Pages site is currently being built from the gh-pages branch
- 创建并进入目录
mkdir vitepress
cd vitepress
- 初始化目录及 index.md
yarn init
yarn add --dev vitepress
mkdir && echo '# Hello VitePress' > docs/index.md
- 添加这些脚本到 package.json
{
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
}
}
- 本地启动服务
yarn docs:dev
没有配置,页面就很简单,用户没法导航。 在 docs 目录下创建 .vitepress 目录即可开始设置配置
.
├─ docs
│ ├─ .vitepress
│ │ └─ config.js
│ └─ index.md
└─ package.json
.vitepress/config.js 是配置 VitePress 站的必要的文件,其将导出一个 JavaScript 对象:
module.exports = {
title: 'Hello VitePress',
description: 'Just playing around.',
nav: [{
text: '',
link: ''
}],
sidebar: [{
text: 'VitePress',
link: './guide/index.md',
children: [{
text: 'step1',
link: ''
}, {
text: 'step2',
link: ''
}]
}]
}