-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocusaurus.config.js
61 lines (61 loc) · 1.52 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
module.exports = {
title: 'Reseach DAO Docs',
tagline: 'Research DAO Documentation',
url: 'https://docs.researchdao.io',
baseUrl: '/',
favicon: 'img/favicon.ico',
organizationName: 'researchdao',
projectName: 'docs',
themeConfig: {
colorMode: {
defaultMode: 'dark',
disableSwitch: true,
respectPrefersColorScheme: false,
},
navbar: {
hideOnScroll: true,
style: 'dark',
title: 'Research DAO',
logo: {
alt: 'Research DAO Logo',
src: 'img/logo.svg',
href: 'https://researchdao.io'
},
items: [
{
href: 'https://github.com/researchdao/docs',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
copyright: `© ${new Date().getFullYear()} Research DAO`,
},
announcementBar: {
id: 'grant-suspension',
content: 'We are suspending our travel grants program until further notice while we seek out new funding for the Research DAO.',
backgroundColor: 'rgb(153, 0, 57)',
textColor: 'white',
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
path: 'content',
routeBasePath: '/',
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/researchdao/docs/edit/main/',
showLastUpdateTime: true,
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};