-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
117 lines (117 loc) · 2.95 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
module.exports = {
title: 'Can You Hear Me?',
tagline: 'Wiki, guides, and comparisons for the endless software solutions available today',
url: 'https://mct-master.github.io',
baseUrl: '/canyouhearme/',
favicon: 'img/mct-logo.ico',
organizationName: 'MCT-master',
projectName: 'canyouhearme',
themeConfig: {
hideableSidebar: true,
navbar: {
title: 'CYHM?',
logo: {
alt: 'MCT Logo',
src: 'img/mct-logo.png',
},
items: [
{
to: 'docs',
activeBasePath: 'docs',
label: 'Wiki',
position: 'left',
},
{
to: 'guides',
activeBasePath: 'guides',
label: 'Guides',
position: 'left'
},
{
href: 'https://github.com/mct-master/canyouhearme',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Information',
items: [
{
label: 'Overview',
to: 'docs',
},
{
label: 'About',
to: 'docs/about',
},
],
},
{
title: 'Community',
items: [
{
label: 'GitHub',
href: 'https://github.com/MCT-master',
},
{
label: 'Discord',
href: 'https://discord.gg/rzcKcxy',
},
],
},
{
title: 'Social',
items: [
{
label: 'Twitter',
href: 'https://twitter.com/MCT_master',
},
{
label: 'University of Oslo',
href: 'https://www.uio.no/english/studies/programmes/mct-master/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Music, Communication and Technology`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebarsWiki.js'),
editUrl:
'https://github.com/mct-master/canyouhearme/edit/master/',
showLastUpdateAuthor: true,
showLastUpdateTime: true,
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
plugins: [
[
"@docusaurus/plugin-content-docs",
{
id: "overview", // for first plugin-content-docs with "resources/" path
path: "./guides", // Path to data on filesystem, relative to site dir.
routeBasePath: "guides", // URL Route.
include: ["**/*.mdx"],
sidebarPath: require.resolve("./sidebarsGuides.js"),
editUrl:
'https://github.com/mct-master/canyouhearme/edit/master/',
showLastUpdateAuthor: true,
showLastUpdateTime: true,
},
],
],
};