docs: 更新侧边栏并配置 Docsify
- 更新 _sidebar.md 文件,修正侧边栏链接路径 - 修改 index.html 文件,明确指定侧边栏路径和基础路径 - 移除 alias 配置,简化代码结构
This commit is contained in:
parent
ce323ae9a3
commit
1241acf916
|
@ -1,5 +1,5 @@
|
|||
- [快速开始](docs/quickstart/)
|
||||
- [进阶技巧](docs/skill/)
|
||||
- [API接口](docs/api/)
|
||||
- [构建镜像](docs/build/)
|
||||
- [博客系列](docs/blog/)
|
||||
- [快速开始](quickstart/)
|
||||
- [进阶技巧](skill/)
|
||||
- [API接口](api/)
|
||||
- [构建镜像](build/)
|
||||
- [博客系列](blog/)
|
|
@ -20,12 +20,11 @@
|
|||
window.$docsify = {
|
||||
name: 'Ragflow-Plus',
|
||||
repo: 'https://github.com/zstar1003/ragflow-plus',
|
||||
loadSidebar: true,
|
||||
loadSidebar: '/ragflow-plus/docs/_sidebar.md',
|
||||
basePath: '/ragflow-plus/',
|
||||
auto2top: true,
|
||||
subMaxLevel: 2,
|
||||
alias: {
|
||||
'/.*/_sidebar.md': 'docs/_sidebar.md'
|
||||
},
|
||||
|
||||
pagination: {
|
||||
previousText: '上一节',
|
||||
nextText: '下一节',
|
||||
|
|
Loading…
Reference in New Issue