1
- import { defineConfig } from " vitepress" ;
1
+ import { defineConfig } from ' vitepress' ;
2
2
3
3
// Single navigation item
4
4
const enNav = [
5
- { text : " Refly" , link : " https://refly.ai" } ,
5
+ { text : ' Refly' , link : ' https://refly.ai' } ,
6
6
{
7
- text : " Add to Chrome" ,
8
- link : " https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd" ,
7
+ text : ' Add to Chrome' ,
8
+ link : ' https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd' ,
9
9
} ,
10
- { text : " Community" , link : " /community/contact-us" } ,
10
+ { text : ' Community' , link : ' /community/contact-us' } ,
11
11
{
12
- text : " v0.3.0" ,
13
- items : [ { text : " Changelog" , link : " /changelog/v0.3.0" } ] ,
12
+ text : ' v0.3.0' ,
13
+ items : [ { text : ' Changelog' , link : ' /changelog/v0.3.0' } ] ,
14
14
} ,
15
15
] ;
16
16
17
17
const zhNav = [
18
- { text : " Refly" , link : " https://refly.ai" } ,
18
+ { text : ' Refly' , link : ' https://refly.ai' } ,
19
19
{
20
- text : " 添加到 Chrome" ,
21
- link : " https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd" ,
20
+ text : ' 添加到 Chrome' ,
21
+ link : ' https://chromewebstore.google.com/detail/lecbjbapfkinmikhadakbclblnemmjpd' ,
22
22
} ,
23
- { text : "社区" , link : " /zh/community/contact-us" } ,
23
+ { text : '社区' , link : ' /zh/community/contact-us' } ,
24
24
{
25
- text : " v0.3.0" ,
26
- items : [ { text : " 更新日志" , link : " /zh/changelog/v0.3.0" } ] ,
25
+ text : ' v0.3.0' ,
26
+ items : [ { text : ' 更新日志' , link : ' /zh/changelog/v0.3.0' } ] ,
27
27
} ,
28
28
] ;
29
29
30
30
// Sidebar translations
31
31
const sidebar = {
32
32
en : [
33
33
{
34
- text : " Getting Started" ,
35
- items : [ { text : " Welcome to Refly" , link : "/" } ] ,
34
+ text : ' Getting Started' ,
35
+ items : [ { text : ' Welcome to Refly' , link : '/' } ] ,
36
36
} ,
37
37
{
38
- text : " Guide" ,
38
+ text : ' Guide' ,
39
39
items : [
40
- { text : "Crash Course" , link : "/guide/crash-course" } ,
41
- { text : "Self-Deploy" , link : "/guide/self-deploy" } ,
42
- { text : "Configuration" , link : "/guide/configuration" } ,
43
- { text : "Chrome Extension" , link : "/guide/chrome-extension" } ,
40
+ { text : 'Crash Course' , link : '/guide/crash-course' } ,
41
+ {
42
+ text : 'Self-Deploy' ,
43
+ link : '/guide/self-deploy' ,
44
+ items : [ { text : 'Ollama' , link : '/guide/self-deploy/ollama' } ] ,
45
+ } ,
46
+ { text : 'Configuration' , link : '/guide/configuration' } ,
47
+ { text : 'Chrome Extension' , link : '/guide/chrome-extension' } ,
44
48
] ,
45
49
} ,
46
50
{
47
- text : " Community" ,
48
- items : [ { text : " Contact Us" , link : " /community/contact-us" } ] ,
51
+ text : ' Community' ,
52
+ items : [ { text : ' Contact Us' , link : ' /community/contact-us' } ] ,
49
53
} ,
50
54
{
51
- text : " About" ,
55
+ text : ' About' ,
52
56
items : [
53
- { text : " Privacy Policy" , link : " /about/privacy-policy" } ,
54
- { text : " Terms of Service" , link : " /about/terms-of-service" } ,
57
+ { text : ' Privacy Policy' , link : ' /about/privacy-policy' } ,
58
+ { text : ' Terms of Service' , link : ' /about/terms-of-service' } ,
55
59
] ,
56
60
} ,
57
61
{
58
- text : " Changelog" ,
62
+ text : ' Changelog' ,
59
63
items : [
60
- { text : " v0.3.0" , link : " /changelog/v0.3.0" } ,
61
- { text : " v0.2.4" , link : " /changelog/v0.2.4" } ,
62
- { text : " v0.2.3" , link : " /changelog/v0.2.3" } ,
63
- { text : " v0.2.2" , link : " /changelog/v0.2.2" } ,
64
- { text : " v0.2.1" , link : " /changelog/v0.2.1" } ,
65
- { text : " v0.2.0" , link : " /changelog/v0.2.0" } ,
66
- { text : " v0.1.2" , link : " /changelog/v0.1.2" } ,
67
- { text : " v0.1.1" , link : " /changelog/v0.1.1" } ,
64
+ { text : ' v0.3.0' , link : ' /changelog/v0.3.0' } ,
65
+ { text : ' v0.2.4' , link : ' /changelog/v0.2.4' } ,
66
+ { text : ' v0.2.3' , link : ' /changelog/v0.2.3' } ,
67
+ { text : ' v0.2.2' , link : ' /changelog/v0.2.2' } ,
68
+ { text : ' v0.2.1' , link : ' /changelog/v0.2.1' } ,
69
+ { text : ' v0.2.0' , link : ' /changelog/v0.2.0' } ,
70
+ { text : ' v0.1.2' , link : ' /changelog/v0.1.2' } ,
71
+ { text : ' v0.1.1' , link : ' /changelog/v0.1.1' } ,
68
72
] ,
69
73
} ,
70
74
] ,
71
75
zh : [
72
76
{
73
- text : "入门" ,
74
- items : [ { text : " 欢迎使用 Refly" , link : " /zh" } ] ,
77
+ text : '入门' ,
78
+ items : [ { text : ' 欢迎使用 Refly' , link : ' /zh' } ] ,
75
79
} ,
76
80
{
77
- text : "指南" ,
81
+ text : '指南' ,
78
82
items : [
79
- { text : "快速上手" , link : "/zh/guide/crash-course" } ,
80
- { text : "自主部署" , link : "/zh/guide/self-deploy" } ,
81
- { text : "配置" , link : "/zh/guide/configuration" } ,
82
- { text : "Chrome 插件" , link : "/zh/guide/chrome-extension" } ,
83
+ { text : '快速上手' , link : '/zh/guide/crash-course' } ,
84
+ {
85
+ text : '私有部署' ,
86
+ link : '/zh/guide/self-deploy/index' ,
87
+ items : [ { text : 'Ollama' , link : '/zh/guide/self-deploy/ollama' } ] ,
88
+ } ,
89
+ { text : '配置' , link : '/zh/guide/configuration' } ,
90
+ { text : 'Chrome 插件' , link : '/zh/guide/chrome-extension' } ,
83
91
] ,
84
92
} ,
85
93
{
86
- text : "社区" ,
87
- items : [ { text : " 联系我们" , link : " /zh/community/contact-us" } ] ,
94
+ text : '社区' ,
95
+ items : [ { text : ' 联系我们' , link : ' /zh/community/contact-us' } ] ,
88
96
} ,
89
97
{
90
- text : "关于" ,
98
+ text : '关于' ,
91
99
items : [
92
- { text : " 隐私政策" , link : " /zh/about/privacy-policy" } ,
93
- { text : " 服务条款" , link : " /zh/about/terms-of-service" } ,
100
+ { text : ' 隐私政策' , link : ' /zh/about/privacy-policy' } ,
101
+ { text : ' 服务条款' , link : ' /zh/about/terms-of-service' } ,
94
102
] ,
95
103
} ,
96
104
{
97
- text : " 更新日志" ,
105
+ text : ' 更新日志' ,
98
106
items : [
99
- { text : " v0.3.0" , link : " /zh/changelog/v0.3.0" } ,
100
- { text : " v0.2.4" , link : " /zh/changelog/v0.2.4" } ,
101
- { text : " v0.2.3" , link : " /zh/changelog/v0.2.3" } ,
102
- { text : " v0.2.2" , link : " /zh/changelog/v0.2.2" } ,
103
- { text : " v0.2.1" , link : " /zh/changelog/v0.2.1" } ,
104
- { text : " v0.2.0" , link : " /zh/changelog/v0.2.0" } ,
105
- { text : " v0.1.2" , link : " /zh/changelog/v0.1.2" } ,
106
- { text : " v0.1.1" , link : " /zh/changelog/v0.1.1" } ,
107
+ { text : ' v0.3.0' , link : ' /zh/changelog/v0.3.0' } ,
108
+ { text : ' v0.2.4' , link : ' /zh/changelog/v0.2.4' } ,
109
+ { text : ' v0.2.3' , link : ' /zh/changelog/v0.2.3' } ,
110
+ { text : ' v0.2.2' , link : ' /zh/changelog/v0.2.2' } ,
111
+ { text : ' v0.2.1' , link : ' /zh/changelog/v0.2.1' } ,
112
+ { text : ' v0.2.0' , link : ' /zh/changelog/v0.2.0' } ,
113
+ { text : ' v0.1.2' , link : ' /zh/changelog/v0.1.2' } ,
114
+ { text : ' v0.1.1' , link : ' /zh/changelog/v0.1.1' } ,
107
115
] ,
108
116
} ,
109
117
] ,
110
118
} ;
111
119
112
120
export default defineConfig ( {
113
121
// Site metadata
114
- title : " Refly Docs" ,
115
- description : " Refly Documentation" ,
122
+ title : ' Refly Docs' ,
123
+ description : ' Refly Documentation' ,
116
124
117
125
// Remove .html extensions from URLs
118
126
cleanUrls : true ,
119
127
120
128
// Configure head
121
- head : [ [ " link" , { rel : " icon" , href : " /logo/logo.svg" } ] ] ,
129
+ head : [ [ ' link' , { rel : ' icon' , href : ' /logo/logo.svg' } ] ] ,
122
130
123
131
// i18n configuration
124
132
locales : {
125
133
root : {
126
- label : " English" ,
127
- lang : "en" ,
128
- title : " Refly Docs" ,
129
- description : " Refly Documentation" ,
134
+ label : ' English' ,
135
+ lang : 'en' ,
136
+ title : ' Refly Docs' ,
137
+ description : ' Refly Documentation' ,
130
138
themeConfig : {
131
139
nav : enNav ,
132
140
sidebar : sidebar . en ,
133
- siteTitle : " Refly Docs" ,
134
- outlineTitle : " On this page" ,
141
+ siteTitle : ' Refly Docs' ,
142
+ outlineTitle : ' On this page' ,
135
143
docFooter : {
136
- prev : " Previous page" ,
137
- next : " Next page" ,
144
+ prev : ' Previous page' ,
145
+ next : ' Next page' ,
138
146
} ,
139
- returnToTopLabel : " Return to top" ,
140
- sidebarMenuLabel : " Menu" ,
141
- darkModeSwitchLabel : " Theme" ,
147
+ returnToTopLabel : ' Return to top' ,
148
+ sidebarMenuLabel : ' Menu' ,
149
+ darkModeSwitchLabel : ' Theme' ,
142
150
search : {
143
- provider : " local" ,
151
+ provider : ' local' ,
144
152
options : {
145
153
translations : {
146
154
button : {
147
- buttonText : " Search" ,
148
- buttonAriaLabel : " Search" ,
155
+ buttonText : ' Search' ,
156
+ buttonAriaLabel : ' Search' ,
149
157
} ,
150
158
modal : {
151
- noResultsText : " No results for" ,
152
- resetButtonTitle : " Reset search" ,
159
+ noResultsText : ' No results for' ,
160
+ resetButtonTitle : ' Reset search' ,
153
161
footer : {
154
- selectText : " to select" ,
155
- navigateText : " to navigate" ,
156
- closeText : " to close" ,
162
+ selectText : ' to select' ,
163
+ navigateText : ' to navigate' ,
164
+ closeText : ' to close' ,
157
165
} ,
158
166
} ,
159
167
} ,
@@ -162,37 +170,37 @@ export default defineConfig({
162
170
} ,
163
171
} ,
164
172
zh : {
165
- label : " 简体中文" ,
166
- lang : "zh" ,
167
- title : " Refly 文档" ,
168
- description : " Refly 开发文档" ,
173
+ label : ' 简体中文' ,
174
+ lang : 'zh' ,
175
+ title : ' Refly 文档' ,
176
+ description : ' Refly 开发文档' ,
169
177
themeConfig : {
170
178
nav : zhNav ,
171
179
sidebar : sidebar . zh ,
172
- siteTitle : " Refly 文档" ,
173
- outlineTitle : " 本页目录" ,
180
+ siteTitle : ' Refly 文档' ,
181
+ outlineTitle : ' 本页目录' ,
174
182
docFooter : {
175
- prev : " 上一页" ,
176
- next : " 下一页" ,
183
+ prev : ' 上一页' ,
184
+ next : ' 下一页' ,
177
185
} ,
178
- returnToTopLabel : " 返回顶部" ,
179
- sidebarMenuLabel : "菜单" ,
180
- darkModeSwitchLabel : "主题" ,
186
+ returnToTopLabel : ' 返回顶部' ,
187
+ sidebarMenuLabel : '菜单' ,
188
+ darkModeSwitchLabel : '主题' ,
181
189
search : {
182
- provider : " local" ,
190
+ provider : ' local' ,
183
191
options : {
184
192
translations : {
185
193
button : {
186
- buttonText : "搜索" ,
187
- buttonAriaLabel : "搜索" ,
194
+ buttonText : '搜索' ,
195
+ buttonAriaLabel : '搜索' ,
188
196
} ,
189
197
modal : {
190
- noResultsText : " 未找到相关结果" ,
191
- resetButtonTitle : " 清除搜索" ,
198
+ noResultsText : ' 未找到相关结果' ,
199
+ resetButtonTitle : ' 清除搜索' ,
192
200
footer : {
193
- selectText : "选择" ,
194
- navigateText : "切换" ,
195
- closeText : "关闭" ,
201
+ selectText : '选择' ,
202
+ navigateText : '切换' ,
203
+ closeText : '关闭' ,
196
204
} ,
197
205
} ,
198
206
} ,
@@ -205,21 +213,19 @@ export default defineConfig({
205
213
themeConfig : {
206
214
// Logo configuration
207
215
logo : {
208
- light : " /logo/logo.svg" ,
209
- dark : " /logo/logo.svg" ,
216
+ light : ' /logo/logo.svg' ,
217
+ dark : ' /logo/logo.svg' ,
210
218
} ,
211
219
212
220
// Social links
213
- socialLinks : [
214
- { icon : "github" , link : "https://github.com/refly-ai/refly" } ,
215
- ] ,
221
+ socialLinks : [ { icon : 'github' , link : 'https://github.com/refly-ai/refly' } ] ,
216
222
217
223
// Language selection
218
- langMenuLabel : " Change Language" ,
224
+ langMenuLabel : ' Change Language' ,
219
225
220
226
// Enable search
221
227
search : {
222
- provider : " local" ,
228
+ provider : ' local' ,
223
229
} ,
224
230
} ,
225
231
} ) ;
0 commit comments