-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
67 lines (66 loc) · 1.41 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
const repoUrl = 'https://github.com/dTelecom'
module.exports = {
title: 'Docs',
tagline: 'dTelecom Documentation',
url: 'https://docs.dtelecom.org/',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'dTelecom',
projectName: 'docs',
themeConfig: {
navbar: {
title: 'Docs',
logo: {
alt: 'dTelecom Logo',
src: 'img/favicon.png',
},
items: [
{
href: 'https://video.dtelecom.org',
label: 'Home',
position: 'right',
},
{
href: repoUrl,
label: 'GitHub',
position: 'right',
className: 'github',
},
],
},
footer: {
style: 'light',
links: [
],
copyright: `Copyright © ${new Date().getFullYear()} dTelecom`,
},
colorMode: {
respectPrefersColorScheme: false,
defaultMode: 'light',
disableSwitch: true,
},
prism: {
theme: require('./themes/dtelecom'),
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
sitemap: {
changefreq: 'weekly',
priority: 0.5,
},
},
],
]
};