-
Notifications
You must be signed in to change notification settings - Fork 12
/
docusaurus.config.js
152 lines (152 loc) · 5.47 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
module.exports = {
title: "VertiGIS Studio Developer Center",
tagline: "by developers, for developers",
url: "https://developers.vertigisstudio.com",
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "geocortex", // Usually your GitHub org/user name.
projectName: "dev-center", // Usually your repo name.
themeConfig: {
// Config lives at https://github.com/algolia/docsearch-configs/blob/master/configs/geocortex.json
algolia: {
apiKey: "fcdd20750dc409ec43b89e692fcbb72c",
indexName: "geocortex",
},
navbar: {
title: "Developer Center",
logo: {
alt: "VertiGIS Logo",
src: "img/logo.png",
},
items: [
{
to: "docs/web/overview",
label: "Web",
position: "left",
activeBasePath: "docs/web",
},
{
to: "docs/mobile/overview",
label: "Mobile",
position: "left",
activeBasePath: "docs/mobile",
},
{
to: "docs/workflow/overview",
label: "Workflow",
position: "left",
activeBasePath: "docs/workflow",
},
{
to: "docs/reporting/overview",
label: "Reporting",
position: "left",
activeBasePath: "docs/reporting",
},
{
to: "blog",
label: "Blog",
position: "left",
activeBasePath: "blog",
},
],
},
footer: {
style: "dark",
copyright: `Copyright © ${new Date().getFullYear()} VertiGIS North America Ltd. All rights reserved.`,
links: [
{
title: "VertiGIS Studio Apps",
items: [
{
label: "VertiGIS Studio Web",
to: "https://apps.geocortex.com/webviewer/designer/",
},
{
label: "VertiGIS Studio Mobile",
to: "https://apps.geocortex.com/mobileviewer/designer/",
},
{
label: "VertiGIS Studio Workflow",
to: "https://apps.geocortex.com/workflow/designer/",
},
{
label: "VertiGIS Studio Reporting",
to: "https://apps.geocortex.com/reporting/designer/",
},
{
label: "VertiGIS Studio Printing",
to: "https://apps.geocortex.com/printing/designer/",
},
{
label: "VertiGIS Studio Inline",
to: "https://apps.geocortex.com/inline/designer/",
},
{
label: "VertiGIS Studio Item Manager",
to: "https://apps.geocortex.com/itemmanager/",
},
],
},
{
title: "More",
items: [
{
label: "Blog",
to: "blog",
},
{
label: "GitHub",
to: "https://github.com/geocortex/dev-center",
},
{
label: "VertiGIS Studio Documentation Center",
to: "https://docs.geocortex.com",
},
{
label: "VertiGIS.com",
to: "https://vertigis.com",
},
],
},
{
title: "Legal",
items: [
{
label: "Terms",
to: "https://www.vertigisstudio.com/legal/#licensing-terms-of-use",
},
{
label: "Privacy",
to: "https://www.vertigisstudio.com/legal/#privacy-statement",
},
],
},
],
},
// Image used for og:image meta tag - see https://ogp.me/
image: "img/og-image.png",
prism: {
additionalLanguages: ["csharp"],
},
gtag: {
trackingID: "UA-103604191-6",
anonymizeIP: true,
},
},
presets: [
[
require.resolve("@docusaurus/preset-classic"),
{
docs: {
editUrl:
"https://github.com/geocortex/dev-center/edit/master/",
sidebarPath: require.resolve("./sidebars.js"),
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};