-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocusaurus.config.js
93 lines (93 loc) · 2.35 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
module.exports = {
title: 'Unpackerr Extracter',
tagline: 'Automated Archive Extractions',
url: 'https://unpackerr.zip',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'Unpackerr', // Usually your GitHub org/user name.
projectName: 'unpackerr.github.io', // Usually your repo name.
themeConfig: {
navbar: {
logo: {
alt: 'Unpackerr',
src: 'img/icon.png',
},
items: [
{
to: 'docs/introduction',
label: 'Documentation',
position: 'left',
},
{
href: 'https://github.com/facebook/docusaurus',
label: 'Docusaurus',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Support',
items: [
{
label: 'Go Lift Discord',
href: 'https://golift.io/discord',
},
{
label: 'Send Feedback',
href: 'https://github.com/Unpackerr/unpackerr/issues/new',
},
],
},
{
title: 'Downloads',
items: [
{
label: 'Packagecloud',
href: 'https://packagecloud.io/golift',
},
{
label: 'Latest Release',
href: 'https://github.com/Unpackerr/unpackerr/releases/latest',
},
],
},
{
title: 'Information',
items: [
{
label: 'Contact Us',
href: 'mailto:[email protected]',
},
{
label: 'Software License',
href: '/docs/unpackerr/license',
},
],
},
],
copyright: `<div class="row"><div class="col footer__col">
<a href="https://hub.docker.com/r/golift/unpackerr">★ THIS PROJECT ON Docker Hub</a>
</div><div class="col footer__col" style="text-align:left;">
Copyright © 2018-${new Date().getFullYear()} Go Lift
</div></div>`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};