-
Notifications
You must be signed in to change notification settings - Fork 19
/
docusaurus.config.tkeel.js
107 lines (103 loc) · 2.37 KB
/
docusaurus.config.tkeel.js
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
const simplePlantUML = require("@akebifiky/remark-simple-plantuml");
const config = {
title: 'tKeel',
tagline: 'tKeel are cool',
url: 'https://docs.tkeel.io',
baseUrl: '/',
favicon: 'images/tkeel-logo-mark.svg',
organizationName: 'tkeel-io',
projectName: 'docs',
deploymentBranch: 'gh-pages',
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
editUrl: 'https://github.com/tkeel-io/docs/tree/main/',
showLastUpdateTime: true,
remarkPlugins: [simplePlantUML],
},
theme: {
customCss: require.resolve('./src/styles/tkeel.scss'),
},
},
]
],
themeConfig: {
navbar: {
logo: {
alt: 'tKeel',
src: 'images/tkeel-logo-type-dark.svg',
width: 149,
height: 28,
},
items: [
{
type: 'docSidebar',
sidebarId: 'startSidebar',
position: 'left',
label: '快速开始',
},
{
type: 'docSidebar',
sidebarId: 'introSidebar',
position: 'left',
label: '熟悉tKeel',
},
{
type: 'docSidebar',
sidebarId: 'developSidebar',
position: 'left',
label: '开发文档',
},
{
type: 'docSidebar',
sidebarId: 'apiSidebar',
position: 'left',
label: 'API',
}
],
},
footer: {
style: 'dark',
links: [
{
title: '文档',
items: [
{
label: '什么是 tKeel',
to: '/',
},
{
label: '概念',
to: '/internal_concepts/platform',
},
{
label: '新手引导',
to: '/getting_started/guide',
},
],
},
{
title: '社区',
items: [
{
label: 'GitHub',
href: 'https://github.com/tkeel-io/tkeel',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} tKeel. Built with Docusaurus.`,
},
},
scripts: [
{
src: 'https://hm.baidu.com/hm.js?fd45d3e0a66aec212c9e87dcf4b45160',
async: true,
},
],
};
module.exports = config;