Files
docs/README.md
孟宁 2c6fe9e7a3
Some checks failed
CI/CD Pipeline for mengning.com.cn / build (push) Failing after 1m47s
更新了CI脚本和REAME.md,删除了dist、cache等构建的文件
2025-11-02 16:50:47 +08:00

32 lines
810 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 docs:dev
```
## 如何打包项目
```md
npm run docs:build
```
## 如何预览打包的项目
```md
npm run docs:preview
```
## 如何添加或修改侧边栏
在docs/.vitepress/config.mts中的sidebar进行修改对于不同路径下的侧边栏分别使用不同函数得到text为侧边栏的描述内容link为点击侧边栏后加载的内容的链接如果有子目录在items进行修改
link链接的内容既可以是网页链接也可以是本地文档
## 如何自定义网站样式
在docs/.vitepress/theme/style.css中自定义网站样式
## 如何添加或修改导航栏
在docs/.vitepress/config.mts中的nav进行修改