generated from AdobeDocs/dev-site-documentation-template
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgatsby-config.js
321 lines (320 loc) · 9.35 KB
/
gatsby-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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
module.exports = {
pathPrefix: process.env.PATH_PREFIX || "/uix/docs/",
siteMetadata: {
pages: [
{
title: "UI Extensibility",
path: "/",
},
{
title: "Getting Started",
path: "/getting-started/"
},
{
title: "Guides",
path: "/guides/"
},
{
title: "Extensible Services",
menu: [
{
title: "AEM Content Fragments Console",
path: "/services/aem-cf-console-admin/"
},
{
title: "AEM Content Fragments Editor",
path: "/services/aem-cf-editor/"
},
{
title: "Universal Editor",
path: "/services/aem-universal-editor/"
},
{
title: "Adobe Commerce Admin",
path: "https://developer.adobe.com/commerce/extensibility/admin-ui-sdk/"
},
{
title: "AEM Assets View",
path: "/services/aem-assets-view/"
},
]
},
{
title: "Extension Manager",
path: "/extension-manager/"
},
],
subPages: [
// Getting Started
{
title: "What Are UI Extensions",
path: "/getting-started/app-builder/"
},
{
title: "Why Choose UI Extensibility",
path: "/getting-started/reason/"
},
{
title: "How It Works",
path: "/getting-started/design/"
},
{
title: "FAQ",
path: "/getting-started/faq/"
},
// Common guides
{
title: "Get Access",
path: "/guides/get-access/"
},
{
title: "Set Up Local Environment",
path: "/guides/local-environment/"
},
{
title: "Create a Project in Developer Console",
path: "/guides/creating-project-in-dev-console/"
},
{
title: "Create a New UI Extension",
path: "/guides/development-flow/"
},
{
title: "Local Preview of the UI Extensions",
path: "/guides/preview-extension-locally/"
},
{
title: "Publish and Manage the UI Extensions",
path: "/guides/publication/"
},
{
title: "AEM Content Fragments Console",
path: "/services/aem-cf-console-admin/"
},
{
title: "Extension Points",
path: "/services/aem-cf-console-admin/api/",
pages: [
{
title: "Common Concepts",
path: "/services/aem-cf-console-admin/api/commons/"
},
{
title: "Action Bar",
path: "/services/aem-cf-console-admin/api/action-bar/"
},
{
title: "Grid Columns",
path: "/services/aem-cf-console-admin/api/grid-columns/"
},
{
title: "Header Menu",
path: "/services/aem-cf-console-admin/api/header-menu/"
},
{
title: "Navigation",
path: "/services/aem-cf-console-admin/api/navigation/"
},
{
title: "Modal Dialogs",
path: "/services/aem-cf-console-admin/api/modal/"
}
]
},
{
title: "Step-by-step Extension Development",
path: "/services/aem-cf-console-admin/extension-development/"
},
{
title: "Code Generation",
path: "/services/aem-cf-console-admin/code-generation/"
},
{
title: "Troubleshooting",
path: "/services/aem-cf-console-admin/debug/"
},
{
title: "AEM Content Fragments Editor",
path: "/services/aem-cf-editor/"
},
{
title: "Extension Points",
path: "/services/aem-cf-editor/api/",
pages: [
{
title: "Common Concepts",
path: "/services/aem-cf-editor/api/commons/"
},
{
title: "Canvas Data",
path: "/services/aem-cf-editor/api/data/"
},
{
title: "Rich Text Editor Toolbar",
path: "/services/aem-cf-editor/api/rte-toolbar/"
},
{
title: "Rich Text Editor Widgets",
path: "/services/aem-cf-editor/api/rte-widgets/"
},
{
title: "Rich Text Editor Badges",
path: "/services/aem-cf-editor/api/rte-badges/"
},
{
title: "Rich Text Editor Color Picker",
path: "/services/aem-cf-editor/api/rte-colorpicker/"
},
{
title: "Header Menu",
path: "/services/aem-cf-editor/api/header-menu/"
},
{
title: "Navigation",
path: "/services/aem-cf-editor/api/navigation/"
},
{
title: "Modal Dialogs",
path: "/services/aem-cf-editor/api/modal/"
},
{
title: "Custom Form Element Rendering",
path: "/services/aem-cf-editor/api/custom-fields/"
},
{
title: "Custom panels in Properties Rail",
path: "/services/aem-cf-editor/api/side-rail/"
},
{
title: "Setting Default Field Properties",
path: "/services/aem-cf-editor/api/field-properties"
}
]
},
{
title: "Code Generation",
path: "/services/aem-cf-editor/code-generation/"
},
{
title: "AEM Assets View",
path: "/services/aem-assets-view/"
},
{
title: "Extension Points",
path: "/services/aem-assets-view/api/",
pages: [
{
title: "Common Concepts",
path: "/services/aem-assets-view/api/commons/"
},
{
title: "Details View",
path: "/services/aem-assets-view/api/details-view/"
},
]
},
{
title: "Step-by-step Extension Development",
path: "/services/aem-assets-view/extension-development/"
},
{
title: "Code Generation",
path: "/services/aem-assets-view/code-generation/"
},
{
title: "Troubleshooting",
path: "/services/aem-assets-view/debug/"
},
{
title: "Extension Manager",
path: "/extension-manager/"
},
{
title: "Feature Highlights",
path: "/extension-manager/feature-highlights/"
},
{
title: "Extensions Developed By Adobe",
path: "/extension-manager/extension-developed-by-adobe/",
pages: [
{
title: "Export Content Fragments to Adobe Target",
path: "/extension-manager/extension-developed-by-adobe/exporting-content-fragment-to-adobe-target"
},
{
title: "Content Fragments Workflows",
path: "/extension-manager/extension-developed-by-adobe/content-fragments-workflows"
},
{
title: "Universal Editor Content Drafts",
path: "/extension-manager/extension-developed-by-adobe/universal-editor-content-drafts"
},
{
title: "Configurable Asset Picker",
path: "/extension-manager/extension-developed-by-adobe/configurable-asset-picker"
},
{
title: "Product Picker for Universal Editor",
path: "/extension-manager/extension-developed-by-adobe/ue-product-picker"
},
]
},
{
title: "Universal Editor",
path: "/services/aem-universal-editor/"
},
{
title: "Extension Points",
path: "/services/aem-universal-editor/api/",
pages: [
{
title: "Common Concepts",
path: "/services/aem-universal-editor/api/commons/"
},
{
title: "Header Menu",
path: "/services/aem-universal-editor/api/header-menu/"
},
{
title: "Modal Dialogs",
path: "/services/aem-universal-editor/api/modal/"
},
{
title: "Custom panels in Properties Rail",
path: "/services/aem-universal-editor/api/properties-rails/"
},
{
title: "Overriding Default Rendering of Item Types",
path: "/services/aem-universal-editor/api/item-types-renderers/"
},
{
title: "Working with events",
path: "/services/aem-universal-editor/api/events/"
},
{
title: "Retrieving Data from the Universal Editor",
path: "/services/aem-universal-editor/api/data/"
},
{
title: "Triggering Universal Editor actions from the extension",
path: "/services/aem-universal-editor/api/actions/"
}
]
},
]
},
plugins: [
"@adobe/gatsby-theme-aio/"
]
};