-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocusaurus.config.js
118 lines (118 loc) · 2.79 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
module.exports = {
title: 'Ichnion',
tagline: 'Visualize your digital footprint',
url: 'https://ichnion.code4myself.org/',
baseUrl: '/',
onBrokenLinks: 'throw',
favicon: 'img/favicon.png',
organizationName: 'ichnion', // Usually your Github org/user name.
projectName: 'website', // Usually your repo name.
themeConfig: {
// algolia: {
// apiKey: 'YOUR_API_KEY',
// indexName: 'YOUR_INDEX_NAME',
// contextualSearch: true,
// },
// announcementBar: {
// id: 'announce_this',
// content: 'Preview of the new project website!',
// backgroundColor: '#fafbfc',
// textColor: '#091E42',
// isCloseable: true,
// },
navbar: {
title: 'Ichnion Project',
style: 'dark',
logo: {
alt: 'Ichnion Logo',
src: 'img/logo.svg',
},
items: [
{
label: 'Documentation',
to: 'docs/quickstart',
position: 'right',
},
{
label: 'Contact',
to: 'docs/contact',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Learn',
items: [
{
label: 'Quickstart',
to: 'docs/quickstart',
},
{
label: 'User Guide',
to: 'docs/user',
},
{
label: 'Developer Guide',
to: 'docs/developer',
},
],
},
{
title: 'Community',
items: [
{
label: 'Join us',
to: 'docs/contact',
},
{
label: 'Discord',
href: 'https://discord.gg/HPFF83fTR4',
},
{
label: 'Github',
href: 'https://github.com/ichnion',
},
],
},
{
title: 'More',
items: [
{
label: 'Supporter',
to: 'docs/community',
},
{
label: 'Get in touch',
to: 'docs/contact',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Code for Myself. Built with Docusaurus.`,
},
},
customFields: {},
plugins: [],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
path: 'docs',
showLastUpdateTime: true,
showLastUpdateAuthor: true,
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/ichnion/website/edit/main/',
},
theme: {
hideableSidebar: true,
image: 'img/textlogo.png',
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};