This repository has been archived by the owner on Jun 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiteConfig.js
60 lines (59 loc) · 1.7 KB
/
siteConfig.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
module.exports = {
baseUrl: "https://fluid.giottojs.org",
title: "D3 Fluid - Micro web framework with d3-view and express",
algolia: {
apiKey: process.env.ALGOLIA_API_KEY
},
google: {
analyticsId: 'UA-110136266-3'
},
github: "quantmind/d3-fluid",
static: [
['/static', 'build']
],
markdown: {
paths: [
{
meta: {
slug: "docs",
path: "./server/docs",
template: "sidenav"
}
},
{
meta: {
slug: "components",
path: "./components",
template: "sidenav",
sidenav: {
routes: {
"/components/:name": {
component: "<markdown source='/components/{{ name }}.md'></markdown>"
}
}
}
}
},
{
meta: {
slug: "",
path: "./site",
template: "topnav",
topnav: {
brand: "d3-fluid",
navigationRight: [
{
"name": "components",
"href": "/components"
},
{
"name": "docs",
"href": "/docs"
}
]
}
}
}
]
}
};