forked from growingio/growingio-sdk-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
168 lines (166 loc) · 4.54 KB
/
docusaurus.config.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
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
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: "一站式数据增长引擎",
tagline: "数据+智能+营销,赋能商业决策,实现业绩增长",
url: "https://growingio.github.io",
baseUrl: "/growingio-sdk-docs-v3/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.png",
trailingSlash: false,
organizationName: "growingio", // Usually your GitHub org/user name.
projectName: "growingio-sdk-docs-v3", // Usually your repo name.
themeConfig: {
navbar: {
title: "",
logo: {
alt: "GrowingIO Logo",
src: "img/logo.svg",
srcDark: "img/logo_white.svg",
},
items: [
{
type: "doc",
docId: "home",
position: "left",
label: "文档",
},
{ to: "/blog", label: "博客", position: "left" },
{ to: "/question", label: "常见问题", position: "left" },
{
href: "https://www.growingio.com/",
label: "官网",
position: "right",
},
{
href: "https://github.com/growingio",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "文档",
to: "/docs/",
},
],
},
{
title: "SDK",
items: [
{
label: "Android",
href: "https://github.com/growingio/growingio-sdk-android-autotracker",
},
{
label: "iOS",
href: "https://github.com/growingio/growingio-sdk-ios-autotracker",
},
{
label: "Web",
href: "https://github.com/growingio/growingio-sdk-webjs-autotracker/tree/CDP",
},
],
},
{
title: "More",
items: [
{
href: "https://www.growingio.com/",
label: "官网",
},
{
label: "博客",
to: "/blog",
},
{
label: "GitHub",
href: "https://github.com/growingio",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} 北京易数科技有限公司 -- Built with Docusaurus.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: [
"groovy",
"java",
"kotlin",
"swift",
"objectivec",
"php",
"dart",
],
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl:
"https://github.com/growingio/growingio-sdk-docs-v3/edit/master/",
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
"https://github.com/growingio/growingio-sdk-docs-v3/edit/master/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
plugins: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
language: ["en", "zh"],
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "question",
path: "question",
routeBasePath: "question",
editUrl:
"https://github.com/growingio/growingio-sdk-docs-v3/edit/master/",
sidebarPath: require.resolve("./sidebarsQuestion.js"),
showLastUpdateTime: true,
},
],
[
"docusaurus-plugin-includes",
{
injectedHtmlTags: {
preBodyTags: [
{
tagName: "script",
attributes: {
type: "text/javascript",
src: "https://growingio.atlassian.net/s/d41d8cd98f00b204e9800998ecf8427e-T/-dtzt95/b/3/c95134bc67d3a521bb3f4331beb9b804/_/download/batch/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector/com.atlassian.jira.collector.plugin.jira-issue-collector-plugin:issuecollector.js?jsI18nTransformer=existing&locale=en-US&collectorId=d067cced",
},
},
],
},
},
],
],
};