forked from onepanelio/core-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
76 lines (76 loc) · 2.41 KB
/
docusaurus.config.js
File metadata and controls
76 lines (76 loc) · 2.41 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
module.exports = {
title: 'The open source, end-to-end computer vision platform',
tagline: 'The open source, end-to-end computer vision platform that runs on any cloud and on-premises.',
url: 'https://docs.onepanel.ai',
baseUrl: '/',
favicon: 'img/favicon.png',
organizationName: 'onepanelio', // Usually your GitHub org/user name.
projectName: 'core-docs', // Usually your repo name.
themeConfig: {
colorMode: {
disableSwitch: true,
},
navbar: {
title: '',
logo: {
alt: 'Onepanel logo',
src: 'img/icon.svg',
},
items: [
{to: 'docs/getting-started/quickstart', label: 'Getting Started', position: 'left'},
{to: 'docs/reference/overview', label: 'User Guide', position: 'left'},
{to: 'docs/deployment/overview', label: 'Operator Manual', position: 'left'},
{href: 'https://github.com/onepanelio/core/releases', label: 'Releases', position: 'left'},
{href: 'https://github.com/onepanelio/core/milestones?direction=asc&sort=due_date&state=open', label: 'Roadmap', position: 'left'},
{
href: 'https://github.com/onepanelio/onepanel',
position: 'right',
className: 'header-icon-link header-github-link',
label: 'GitHub',
},
{
href: 'https://join.slack.com/t/onepanel-ce/shared_invite/zt-eyjnwec0-nLaHhjif9Y~gA05KuX6AUg',
position: 'right',
className: 'header-icon-link header-slack-link',
label: 'Slack',
},
{
href: 'https://twitter.com/onepanelai',
position: 'right',
className: 'header-icon-link header-twitter-link',
label: 'Twitter',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} Onepanel, Inc.`,
},
algolia: {
apiKey: '882b068ae95b9413f0e9ef625db7964e',
indexName: 'onepanelio',
algoliaOptions: {}, // Optional, if provided by Algolia
},
googleAnalytics: {
trackingID: 'UA-106005416-5',
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/onepanelio/core-docs/tree/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
scripts: [
'/js/gtm.js'
],
};