-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocusaurus.config.ts
321 lines (309 loc) · 9.19 KB
/
docusaurus.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const isRsdoctor = false;
const config: Config = {
title: 'AI Cookbook',
tagline: 'Приложения и инструменты для AI, разработчикам и бизнесу',
favicon: 'img/favicon.ico',
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
// Set the production url of your site here
url: 'https://ai-cookbook.ru',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'ai-cookbook', // Usually your GitHub org/user name.
projectName: 'cookbook', // Usually your repo name.
onBrokenLinks: 'ignore',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
// may want to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'ru',
locales: ['ru'],
},
headTags: [
// Скрипт Яндекс.Метрики
{
tagName: 'script',
attributes: {
type: 'text/javascript',
},
innerHTML: `
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(99255215, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true,
webvisor:true
});
`,
},
// NoScript тег для Яндекс.Метрики
{
tagName: 'noscript',
attributes: {},
innerHTML: `
<div><img src="https://mc.yandex.ru/watch/99255215" style="position:absolute; left:-9999px;" alt="" /></div>
`,
},
],
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/ai-cookbook/cookbook/',
},
blog: {
showReadingTime: true,
feedOptions: {
type: ['rss', 'atom'],
xslt: true,
},
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/ai-cookbook/cookbook/',
// Useful options to enforce blogging best practices
onInlineTags: 'warn',
onInlineAuthors: 'warn',
onUntruncatedBlogPosts: 'warn',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
navbar: {
title: 'AI Cookbook β',
logo: {
alt: 'AI Cookbook Logo',
src: 'img/logo.svg',
href: '/',
},
items: [
{
href: '/showcase',
label: 'Приложения',
position: 'left',
},
{
href: '/cookbook',
label: 'Руководства',
position: 'left',
},
{
type: 'dropdown',
label: 'Разработчикам',
position: 'left',
items: [
{
type: 'docSidebar',
sidebarId: 'adapterSidebar',
label: 'OpenAI Адаптер',
},
{
type: 'docSidebar',
sidebarId: 'guidesSidebar',
label: 'Руководства @ Yandex Cloud',
},
{
type: 'docSidebar',
sidebarId: 'advancedSidebar',
label: 'Продвинутые инструменты',
},
{
type: 'docSidebar',
sidebarId: 'appsSidebar',
label: 'Self-hosted приложения',
},
{
type: 'docSidebar',
sidebarId: 'promptsSidebar',
label: 'Промптбук',
},
],
},
{
href: '/docs/etc/contributing',
label: 'Участие',
position: 'right',
},
{
href: 'https://t.me/aicookbookbot',
label: 'Помощь',
position: 'right',
},
{
//href: 'https://github.com/ai-cookbook/cookbook',
href: 'https://github.com/ai-cookbook/cookbook',
label: 'GitHub',
position: 'right',
}
],
},
footer: {
style: 'dark',
links: [
{
title: 'Ресурсы',
items: [
{
label: 'О проекте',
to: '/',
},
{
label: 'Лента приложений',
to: '/showcase',
},
{
label: 'Лента руководств',
to: '/cookbook',
},
{
label: 'Документация адаптера',
to: '/docs/adapter/',
},
{
label: 'Промптбук',
to: '/docs/prompts/',
},
{
label: 'Бизнесу',
to: '/docs/biz/',
},
],
},
{
title: 'Связь',
items: [
{
label: 'Участие',
href: '/docs/etc/contributing',
},
{
label: 'Помощь',
href: 'https://t.me/aicookbookbot',
},
{
label: 'Сообщество',
href: 'https://t.me/aicbcom',
},
{
label: 'Статус страницы',
href: 'https://ai-cookbook-ru.cronitorstatus.com/',
},
],
},
{
title: 'Ссылки',
items: [
{
label: 'GitHub',
href: 'https://github.com/ai-cookbook/cookbook',
},
{
label: 'GitHub адаптера',
href: 'https://github.com/ai-cookbook/openai-yandexgpt-adapter',
},
{
label: 'Документация Yandex Foundational Models',
href: 'https://cloud.yandex.ru/docs/foundation-models',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} AI Cookbook Ru`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
magicComments: [
// Remember to extend the default highlight class name as well!
{
className: 'theme-code-block-highlighted-line',
line: 'highlight-next-line',
block: {start: 'highlight-start', end: 'highlight-end'},
},
{
className: 'code-block-userprompt-line',
line: 'user-highlight-line',
block: {start: 'user-highlight-start', end: 'user-highlight-end'},
},
{
className: 'code-block-assistant-line',
line: 'assistant-highlight-line',
block: {start: 'assistant-highlight-start', end: 'assistant-highlight-end'},
},
{
className: 'code-block-assistant-func-line',
line: 'assistant-func-highlight-line',
block: {start: 'assistant-func-highlight-start', end: 'assistant-func-highlight-end'},
},
{
className: 'code-block-system-line',
line: 'system-highlight-line',
block: {start: 'system-highlight-start', end: 'system-highlight-end'},
},
],
},
plugins: [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
{
to: '/docs/biz/secondary/FC_why',
from: '/docs/biz/FC_why',
},
],
},
],
['docusaurus-plugin-yandex-metrica', {
counterID: '99255215',
enableInProdOnly: false,
alternativeCdn: true,
}],
isRsdoctor && [
'rsdoctor',
{
rsdoctorOptions: {
disableTOSUpload: true,
supports: {
// https://rsdoctor.dev/config/options/options#generatetilegraph
generateTileGraph: true,
},
linter: {
// See https://rsdoctor.dev/guide/usage/rule-config
rules: {
'ecma-version-check': 'off',
'duplicate-package': 'off',
},
},
},
},
],
'@docusaurus/theme-mermaid',
],
} satisfies Preset.ThemeConfig,
};
export default config;