-
Notifications
You must be signed in to change notification settings - Fork 20
/
docusaurus.config.js
123 lines (122 loc) · 3.31 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
module.exports = {
title: 'Certify The Web Docs',
tagline: "The worlds most popular solution for Let's Encrypt and ACME Certificate Management on Windows.",
url: 'https://docs.certifytheweb.com',
baseUrl: '/',
favicon: 'img/favicon.ico',
organizationName: 'webprofusion', // Usually your GitHub org/user name.
projectName: 'certify-docs', // Usually your repo name.
themeConfig: {
algolia: {
appId: 'YX7T7PF7BX',
apiKey: '95033d5e9d8856ce3e628103f123b748',
indexName: 'certifytheweb'
},
navbar: {
title: 'Certify The Web - Docs',
logo: {
alt: 'Certify The Web Logo',
src: 'img/logo.svg',
},
items: [
{ to: 'docs/intro', label: 'Certify Certificate Manager', position: 'left' },
{ to: 'docs/dashboard/', label: 'Certify Dashboard', position: 'left' },
{ to: 'docs/dns/providers/certifydns/', label: 'Certify DNS', position: 'left' },
{ to: 'docs/support', label: 'Support', position: 'left' },
{
href: 'https://community.certifytheweb.com',
label: 'Community',
position: 'right',
},
{
label: 'certifytheweb.com',
href: 'https://certifytheweb.com',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Certify Certificate Manager',
to: 'docs/intro',
},
{
label: 'Certify Dashboard',
to: 'docs/dashboard',
},
{
label: 'Certify DNS',
to: 'docs/dns/providers/certifydns',
},
{
label: 'Support',
to: 'docs/support',
},
],
},
{
title: 'Community',
items: [
{
label: 'Discussions',
href: 'https://community.certifytheweb.com',
},
{
label: 'GitHub',
href: 'https://github.com/webprofusion/certify',
},
{
label: 'certifytheweb.com',
href: 'https://certifytheweb.com',
},
],
},
{
title: 'Social',
items: [
{
label: 'GitHub',
href: 'https://github.com/webprofusion/certify',
},
{
label: 'X.com',
href: 'https://x.com/certifytheweb',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Webprofusion Pty Ltd. Docs Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
path: './docs',
// Sidebars file relative to website dir.
sidebarPath: require.resolve('./sidebars.js'),
sidebarCollapsible: false,
editUrl:
'https://github.com/webprofusion/certify-docs/edit/master/',
},
theme: {
customCss: [require.resolve('./src/css/custom.css')],
},
gtag: {
trackingID: 'G-RLGYG5TYY5',
anonymizeIP: true
},
},
],
],
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
};