-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
176 lines (167 loc) · 5.13 KB
/
docusaurus.config.js
File metadata and controls
176 lines (167 loc) · 5.13 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
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
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'TapData Documentation - Real-time Data Integration Platform',
tagline: 'TapData Cloud, a Live Data Platform',
url: 'https://docs.tapdata.io',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'tapdata', // Usually your GitHub org/user name.
projectName: 'docs-en', // Usually your repo name.
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
routeBasePath: '/', // Serve the docs at the site's root
sidebarPath: require.resolve('./sidebars.js'),
// Configuring versioning behavior and label
/*lastVersion: 'current',
versions: {
current: {label: '4.x', banner: 'none' },
'3.0': { label: '3.x', banner: 'none' },
},*/
editUrl:
'https://github.com/tapdata/docs-en/tree/main',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
// Google Analytics
gtag: {
trackingID: 'G-PVNR6DP305', // Measurement ID, which can be find in Data streams page on Google Analytics platform.
},
blog: false, // Disable the blog plugin
sitemap: {
changefreq: 'daily',
priority: 0.5,
ignorePatterns: ['/reuse/**','/markdown-page'],
filename: 'sitemap.xml',
},
}),
],
],
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
// An Image Zoom plugin for Docusaurus 2
plugins: [
'plugin-image-zoom',
'docusaurus-plugin-hotjar'
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// By enable hideable option, you can make the entire sidebar hideable, allowing users to better focus on the content.
docs: {
sidebar: {
hideable: true,
},
},
// Website announcement
announcementBar: {
id: 'announcementBar-1',
content: `🎉️ More stable and user-friendly, build your real-time data platform with one click. Free trial with <a target="_blank" rel="noopener noreferrer" href="https://cloud.tapdata.io/">TapData Cloud</a> ! `,
backgroundColor: '#1d4378',
textColor: '#ffffff',
},
// SEO Configuration, this would become <meta name="keywords" content="cooking, blog"> in the generated HTML
metadata: [{name: 'keywords', content: 'DaaS platform, data replication, data development,TapData'}],
navbar: {
logo: {
alt: 'TapData',
src: 'img/logo.png',
href: 'https://tapdata.io/',
},
items: [
{
type: 'doc',
docId: 'what-is-tapdata',
position: 'left',
label: 'TapData Documentation',
},
{
href: 'https://cloud.tapdata.io',
position: 'right',
label: 'Log in TapData Cloud',
},
/*{
type: 'docsVersionDropdown',
position: 'right',
dropdownActiveClassDisabled: true,
},*/
{
href: 'https://github.com/tapdata/tapdata',
label: 'GitHub⭐',
position: 'right',
},
],
},
// algolia search plugin
algolia: {
appId: 'QMWL076P1O',
apiKey: '76c365bb35304a755c612e0d58b1df5e',
indexName: 'tapdata-io',
contextualSearch: true,
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Tutorial',
to: '/getting-started',
},
],
},
{
title: 'Community',
items: [
{
label: 'Slack',
href: 'https://join.slack.com/t/tapdatacommunity/shared_invite/zt-1biraoxpf-NRTsap0YLlAp99PHIVC9eA',
},
{
label: 'Twitter',
href: 'https://twitter.com/tapdata_daas',
},
],
},
{
title: 'More',
items: [
{
label: 'GitHub',
href: 'https://github.com/tapdata/docs-en',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} TapData, Inc. Built with Docusaurus.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
theme: require('prism-react-renderer/themes/dracula'),
},
// Hotjar for Feedback
hotjar: {
applicationId: '3447165',
},
}),
scripts: [
'/js/iframe.js'
]
};
module.exports = config;