This repository was archived by the owner on May 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
58 lines (57 loc) · 1.53 KB
/
config.js
File metadata and controls
58 lines (57 loc) · 1.53 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
const config = {
"gatsby": {
"pathPrefix": "/",
"siteUrl": "https://ockam.io/documentation",
"gaTrackingId": null,
},
"header": {
"title": "Ockam documentation",
"menu": [
{
"label": "Product",
"type": "text",
"to": "/product",
},
{
"label": "Blog",
"type": "text",
"to": "/blog",
},
{
"label": "Documentation",
"type": "text",
"to": "/samples",
},
{
"label": "Team",
"type": "text",
"to": "/team",
},
{
"label": "Contact us",
"type": "button",
"to": "/contact",
},
],
"helpUrl": "",
"tweetText": "",
"search": {
"enabled": false,
"indexName": "",
"algoliaAppId": process.env.GATSBY_ALGOLIA_APP_ID,
"algoliaSearchKey": process.env.GATSBY_ALGOLIA_SEARCH_KEY,
"algoliaAdminKey": process.env.ALGOLIA_ADMIN_KEY,
},
},
"sidebar": {
"isDefaultExpand": true,
},
"siteMetadata": {
"title": "Ockam | Documentation",
"description": "Ockam is a collection of tools to help you establish secure connections and trustful exchange of information within connected systems. This documentation page describes the core concepts and the underlying technology behind Ockam.",
"ogImage": null,
"docsLocation": "https://github.com/masterborn/ockam-doc-generator/tree/master/src/content",
"favicon": "https://assets.website-files.com/5d020abd4e78f3888a3da9cd/5d0aaef2c48189e215bbf5c6_Icon_32x32_FullColor.png",
},
};
module.exports = config;