-
Notifications
You must be signed in to change notification settings - Fork 1
/
docusaurus.config.js
69 lines (69 loc) · 1.84 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
module.exports = {
title: 'BBData',
tagline: '',
url: 'https://bbdata-website.netlify.app',
baseUrl: '/',
favicon: 'img/icosys_cropped.png',
organizationName: 'HEIA-FR', // Usually your GitHub org/user name.
projectName: 'BANTAM', // Usually your repo name.
stylesheets: [
{
href: 'https://fonts.googleapis.com/css2?' +
'family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900' +
'&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900' +
'&display=swap"'
},
],
themeConfig: {
disableDarkMode: true,
navbar: {
title: 'BBData',
logo: {
alt: '',
src: '',
},
links: [
{to: 'showcases', label: 'Showcases', position: 'left'},
{to: 'docs/get_started', label: 'Developer', position: 'left'},
{to: 'about', label: 'About', position: 'left'},
{
href: 'https://github.com/big-building-data/',
label: 'GitHub',
position: 'right',
},
{
href: 'https://bbdata-admin.daplab.ch/auth/',
label: 'Login',
position: "right",
}
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} HEIA-FR, Built with Docusaurus.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/facebook/docusaurus/edit/master/website/',
},
theme: {
customCss: [
require.resolve('./src/css/custom.css'),
require.resolve('./src/css/typography.css')
]
},
pages: {
path: 'src/pages',
routeBasePath: '',
},
},
],
],
plugins: [],
};