@@ -85,10 +85,6 @@ const sidebar = {
85
85
text : 'Deployment Guide' ,
86
86
link : '/community-version/self-deploy/' ,
87
87
} ,
88
- {
89
- text : 'Gitpod Deployment' ,
90
- link : '/guide/use-gitpod-deploy' ,
91
- } ,
92
88
{
93
89
text : 'Ollama Integration' ,
94
90
link : '/community-version/self-deploy/ollama' ,
@@ -97,6 +93,10 @@ const sidebar = {
97
93
text : 'Configuration Guide' ,
98
94
link : '/community-version/self-deploy/configuration' ,
99
95
} ,
96
+ {
97
+ text : 'Gitpod Quick Deploy' ,
98
+ link : '/community-version/self-deploy/gitpod-quick-deploy' ,
99
+ } ,
100
100
] ,
101
101
} ,
102
102
{ text : 'FAQ' , link : '/community-version/faq' } ,
@@ -194,10 +194,6 @@ const sidebar = {
194
194
text : '私有部署' ,
195
195
items : [
196
196
{ text : '部署指南' , link : '/zh/community-version/self-deploy/' } ,
197
- {
198
- text : 'Gitpod 部署' ,
199
- link : '/zh/guide/use-gitpod-deploy' ,
200
- } ,
201
197
{
202
198
text : 'Ollama 集成' ,
203
199
link : '/zh/community-version/self-deploy/ollama' ,
@@ -206,6 +202,12 @@ const sidebar = {
206
202
text : '配置指南' ,
207
203
link : '/zh/community-version/self-deploy/configuration' ,
208
204
} ,
205
+ { text : '个性化设置' , link : '/zh/community-version/self-deploy/personalization.md' } ,
206
+ { text : '本地快速使用 Refly' , link : '/zh/community-version/self-deploy/local-quick-start.md' } ,
207
+ {
208
+ text : 'Gitpod 快速部署' ,
209
+ link : '/zh/community-version/self-deploy/gitpod-quick-deploy' ,
210
+ } ,
209
211
] ,
210
212
} ,
211
213
{ text : '常见问题' , link : '/zh/community-version/faq' } ,
@@ -305,6 +307,7 @@ export default defineConfig({
305
307
nav : enNav ,
306
308
sidebar : sidebar . en ,
307
309
siteTitle : 'Refly Docs' ,
310
+ outline : [ 2 , 4 ] ,
308
311
outlineTitle : 'On this page' ,
309
312
docFooter : {
310
313
prev : 'Previous page' ,
@@ -344,6 +347,7 @@ export default defineConfig({
344
347
nav : zhNav ,
345
348
sidebar : sidebar . zh ,
346
349
siteTitle : 'Refly 文档' ,
350
+ outline : [ 2 , 4 ] ,
347
351
outlineTitle : '本页目录' ,
348
352
docFooter : {
349
353
prev : '上一页' ,
@@ -393,5 +397,6 @@ export default defineConfig({
393
397
search : {
394
398
provider : 'local' ,
395
399
} ,
400
+ outline : [ 2 , 4 ] , // 添加此行
396
401
} ,
397
402
} ) ;
0 commit comments