-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathveda.config.js
More file actions
70 lines (63 loc) · 1.7 KB
/
veda.config.js
File metadata and controls
70 lines (63 loc) · 1.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const dataCatalogNavItem = {
id: "data-catalog",
title: "Data Catalog",
to: "/data-catalog",
type: "internalLink",
};
const explorationNavItem = {
id: "exploration",
title: "Exploration Tools",
type: "dropdown",
children: [
{
id: "time-series-analysis",
title: "Time-Series Analysis",
to: "/exploration",
type: "internalLink",
},
{
id: "fire-evnt-explorer",
title: "Fire Event Explorer",
to: "/tools/fire-event-explorer",
type: "internalLink",
},
],
};
const storiesNavItem = {
id: "stories",
title: "Stories",
to: "/stories",
type: "internalLink",
};
let headerNavItems = [dataCatalogNavItem, explorationNavItem, storiesNavItem];
module.exports = {
/**
* Glob path for the datasets.
*/
datasets: "./datasets/*.data.mdx",
/**
* Glob path for the stories.
*/
stories: "./stories/*.stories.mdx",
// App component and content overrides.
// See docs/CONFIGURATION.md for more information.
pageOverrides: {
// Content for the about page.
// Type: Content override
aboutContent: "./overrides/about.mdx",
"/tools/fire-event-explorer": "./custom-pages/wildfire-explorer/index.mdx",
},
strings: {
stories: {
one: " Data Story",
other: "Data Stories",
},
},
navItems: {
headerNavItems: headerNavItems,
},
cookieConsentForm: {
title: "Cookie Consent",
copy: "We use cookies to enhance your browsing experience and to help us understand how our website is used. These cookies allow us to collect data on site usage and improve our services based on your interactions. To learn more about it, see our [Privacy Policy](https://www.nasa.gov/privacy/#cookies).",
},
};