-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
55 lines (54 loc) · 1.32 KB
/
docusaurus.config.js
File metadata and controls
55 lines (54 loc) · 1.32 KB
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
module.exports = {
title: "Here We Build CityScope",
tagline: "Urban Modelling & Simulation",
url: "https://cityscope.media.mit.edu",
baseUrl: "/",
onBrokenLinks: "throw",
favicon: "img/favicon.ico",
organizationName: "CityScope", // Usually your GitHub org/user name.
projectName: "cityscope.github.io", // Usually your repo name.
deploymentBranch: "gh-pages",
themeConfig: {
navbar: {
title: "MIT CityScope",
logo: {
alt: "Logo",
src: "img/ML_logo.png",
},
items: [
{
href: "https://cityscope.media.mit.edu/CS_cityscopeJS",
label: "CityScopeJS",
position: "right",
src: "img/",
},
{
href: "https://github.com/CityScope",
label: "GitHub",
position: "right",
src: "img/",
},
],
},
footer: {
logo: {
alt: "Logo",
src: "img/ML_logo_sml.png",
href: "https://github.com/CityScope",
},
copyright: `CityScope, MIT City Science ${new Date().getFullYear()}`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
routeBasePath: "/",
sidebarPath: "./sidebars.js",
editUrl: "https://github.com/CityScope/cityscope.github.io/",
},
},
],
],
};