1
0
forked from devstar/docs
Files
docs/README.md

32 lines
826 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 梦宁软件官网及DevStar文档
## 配置开发环境
```md
npm install
npm add -D vitepress
```
## 如何启动调试项目
```md
npm run dev
```
## 如何打包项目
```md
npm run build
```
## 如何预览打包的项目
```md
npm run preview
```
## 如何添加或修改侧边栏
在docs/.vitepress/config.mts中的sidebar进行修改对于不同路径下的侧边栏分别使用不同函数得到text为侧边栏的描述内容link为点击侧边栏后加载的内容的链接如果有子目录在items进行修改
link链接的内容既可以是网页链接也可以是本地文档
## 如何自定义网站样式
在docs/.vitepress/theme/style.css中自定义网站样式
## 如何添加或修改导航栏
在docs/.vitepress/config.mts中的nav进行修改