forked from bluenoah1991/omni-context-cli-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
70 lines (64 loc) · 1.51 KB
/
docusaurus.config.ts
File metadata and controls
70 lines (64 loc) · 1.51 KB
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
import {themes as prismThemes} from 'prism-react-renderer';
const config = {
title: 'OmniContext CLI',
tagline: 'Agentic Tools for Developers',
url: 'https://bluenoah1991.github.io',
baseUrl: '/omni-context-cli-landing/docs/',
organizationName: 'bluenoah1991',
projectName: 'omni-context-cli-landing',
onBrokenLinks: 'ignore',
onBrokenMarkdownLinks: 'warn',
markdown: {
format: 'md',
},
i18n: {
defaultLocale: 'en',
locales: ['en', 'zh-Hans'],
},
presets: [
[
'classic',
{
docs: {
path: 'markdown',
routeBasePath: '/',
editUrl: 'https://github.com/bluenoah1991/omni-context-cli-landing/tree/main/',
},
theme: {
customCss: './assets/css/docs.css',
},
},
],
],
themeConfig: {
navbar: {
title: 'OmniContext CLI',
items: [
{
type: 'docSidebar',
sidebarId: 'defaultSidebar',
position: 'left',
label: 'Documentation',
},
{
type: 'localeDropdown',
position: 'right',
},
{
href: 'https://github.com/bluenoah1991/omni-context-cli-landing',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} OmniContext CLI. Built with Docusaurus.`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
},
};
export default config;