-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocusaurus.config.js
85 lines (84 loc) · 2.16 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
module.exports = {
title: 'Vulpem Docs',
tagline: 'Banking on Bitcoin - Enabling the next generation of bitcoin-native financial services',
url: 'https://docs.vulpem.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'vulpemventures', // Usually your GitHub org/user name.
projectName: 'docs.vulpem.com', // Usually your repo name.
themeConfig: {
colorMode: {
defaultMode: 'light',
},
prism: {
theme: require('prism-react-renderer/themes/vsDark'),
darkTheme: require('prism-react-renderer/themes/synthwave84')
},
navbar: {
title: 'Vulpem Docs',
logo: {
alt: 'Vulpem Ventures Logo',
src: 'img/vulpem_logo.png',
},
items: [
{
href: 'mailto:[email protected]',
label: 'Contact',
position: 'right',
},
{
href: 'https://github.com/vulpemventures/docs.vulpem.com',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Community',
items: [
{
label: 'Twitter',
href: 'https://twitter.com/vulpemventures',
},
],
},
{
title: 'More',
items: [
{
label: 'Blog',
href: 'https://vulpem.medium.com',
},
{
label: 'GitHub',
href: 'https://github.com/vulpemventures/docs.vulpem.com',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Vulpem Ventures OU. Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
routeBasePath: '/',
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl:
'https://github.com/vulpemventures/docs.vulpem.com/edit/master/docs/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};