@techdocs/cli 1.10.3-next.2 → 1.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/embedded-app/.config-schema.json +125 -127
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/main.3c83117c.js +550 -0
- package/dist/embedded-app/static/main.3c83117c.js.map +1 -0
- package/dist/package.json.cjs.js +1 -1
- package/package.json +7 -7
- package/dist/embedded-app/static/main.bb6695ee.js +0 -550
- package/dist/embedded-app/static/main.bb6695ee.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
+
## 1.10.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 43629b1: Updated to use new utilities from `@backstage/cli-common`.
|
|
8
|
+
- 2bae83a: Bumped dev dependencies `@types/node`
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-defaults@0.14.0
|
|
11
|
+
- @backstage/plugin-techdocs-node@1.13.10
|
|
12
|
+
- @backstage/cli-common@0.1.16
|
|
13
|
+
|
|
3
14
|
## 1.10.3-next.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -106,77 +106,6 @@
|
|
|
106
106
|
},
|
|
107
107
|
"path": "../cli/package.json"
|
|
108
108
|
},
|
|
109
|
-
{
|
|
110
|
-
"path": "../../plugins/permission-common/config.d.ts",
|
|
111
|
-
"value": {
|
|
112
|
-
"type": "object",
|
|
113
|
-
"properties": {
|
|
114
|
-
"permission": {
|
|
115
|
-
"description": "Configuration options for Backstage permissions and authorization",
|
|
116
|
-
"type": "object",
|
|
117
|
-
"properties": {
|
|
118
|
-
"enabled": {
|
|
119
|
-
"description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
|
|
120
|
-
"visibility": "frontend",
|
|
121
|
-
"type": "boolean"
|
|
122
|
-
},
|
|
123
|
-
"EXPERIMENTAL_enableBatchedRequests": {
|
|
124
|
-
"visibility": "frontend",
|
|
125
|
-
"type": "boolean"
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
131
|
-
},
|
|
132
|
-
"packageName": "@backstage/plugin-permission-common"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"path": "../core-components/config.d.ts",
|
|
136
|
-
"value": {
|
|
137
|
-
"type": "object",
|
|
138
|
-
"properties": {
|
|
139
|
-
"auth": {
|
|
140
|
-
"type": "object",
|
|
141
|
-
"properties": {
|
|
142
|
-
"autologout": {
|
|
143
|
-
"description": "Autologout feature configuration",
|
|
144
|
-
"type": "object",
|
|
145
|
-
"properties": {
|
|
146
|
-
"enabled": {
|
|
147
|
-
"description": "Enable or disable the autologout feature",
|
|
148
|
-
"visibility": "frontend",
|
|
149
|
-
"type": "boolean"
|
|
150
|
-
},
|
|
151
|
-
"idleTimeoutMinutes": {
|
|
152
|
-
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
153
|
-
"visibility": "frontend",
|
|
154
|
-
"type": "number"
|
|
155
|
-
},
|
|
156
|
-
"promptBeforeIdleSeconds": {
|
|
157
|
-
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
158
|
-
"visibility": "frontend",
|
|
159
|
-
"type": "number"
|
|
160
|
-
},
|
|
161
|
-
"useWorkerTimers": {
|
|
162
|
-
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
163
|
-
"visibility": "frontend",
|
|
164
|
-
"type": "boolean"
|
|
165
|
-
},
|
|
166
|
-
"logoutIfDisconnected": {
|
|
167
|
-
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
168
|
-
"visibility": "frontend",
|
|
169
|
-
"type": "boolean"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
177
|
-
},
|
|
178
|
-
"packageName": "@backstage/core-components"
|
|
179
|
-
},
|
|
180
109
|
{
|
|
181
110
|
"path": "../core-app-api/config.d.ts",
|
|
182
111
|
"value": {
|
|
@@ -405,53 +334,41 @@
|
|
|
405
334
|
"packageName": "@backstage/core-app-api"
|
|
406
335
|
},
|
|
407
336
|
{
|
|
408
|
-
"path": "
|
|
337
|
+
"path": "../core-components/config.d.ts",
|
|
409
338
|
"value": {
|
|
410
339
|
"type": "object",
|
|
411
340
|
"properties": {
|
|
412
|
-
"
|
|
413
|
-
"description": "Configuration options for the techdocs plugin",
|
|
341
|
+
"auth": {
|
|
414
342
|
"type": "object",
|
|
415
343
|
"properties": {
|
|
416
|
-
"
|
|
417
|
-
"description": "
|
|
418
|
-
"visibility": "frontend",
|
|
419
|
-
"enum": [
|
|
420
|
-
"external",
|
|
421
|
-
"local"
|
|
422
|
-
],
|
|
423
|
-
"type": "string"
|
|
424
|
-
},
|
|
425
|
-
"legacyUseCaseSensitiveTripletPaths": {
|
|
426
|
-
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
427
|
-
"visibility": "frontend",
|
|
428
|
-
"type": "boolean"
|
|
429
|
-
},
|
|
430
|
-
"sanitizer": {
|
|
344
|
+
"autologout": {
|
|
345
|
+
"description": "Autologout feature configuration",
|
|
431
346
|
"type": "object",
|
|
432
347
|
"properties": {
|
|
433
|
-
"
|
|
434
|
-
"description": "
|
|
348
|
+
"enabled": {
|
|
349
|
+
"description": "Enable or disable the autologout feature",
|
|
435
350
|
"visibility": "frontend",
|
|
436
|
-
"type": "
|
|
437
|
-
"items": {
|
|
438
|
-
"type": "string"
|
|
439
|
-
}
|
|
351
|
+
"type": "boolean"
|
|
440
352
|
},
|
|
441
|
-
"
|
|
442
|
-
"description": "
|
|
353
|
+
"idleTimeoutMinutes": {
|
|
354
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
443
355
|
"visibility": "frontend",
|
|
444
|
-
"type": "
|
|
356
|
+
"type": "number"
|
|
445
357
|
},
|
|
446
|
-
"
|
|
447
|
-
"description": "
|
|
358
|
+
"promptBeforeIdleSeconds": {
|
|
359
|
+
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
448
360
|
"visibility": "frontend",
|
|
449
|
-
"type": "
|
|
361
|
+
"type": "number"
|
|
450
362
|
},
|
|
451
|
-
"
|
|
452
|
-
"description": "
|
|
363
|
+
"useWorkerTimers": {
|
|
364
|
+
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
453
365
|
"visibility": "frontend",
|
|
454
|
-
"type": "
|
|
366
|
+
"type": "boolean"
|
|
367
|
+
},
|
|
368
|
+
"logoutIfDisconnected": {
|
|
369
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
370
|
+
"visibility": "frontend",
|
|
371
|
+
"type": "boolean"
|
|
455
372
|
}
|
|
456
373
|
}
|
|
457
374
|
}
|
|
@@ -460,7 +377,7 @@
|
|
|
460
377
|
},
|
|
461
378
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
462
379
|
},
|
|
463
|
-
"packageName": "@backstage/
|
|
380
|
+
"packageName": "@backstage/core-components"
|
|
464
381
|
},
|
|
465
382
|
{
|
|
466
383
|
"path": "../integration/config.d.ts",
|
|
@@ -677,15 +594,22 @@
|
|
|
677
594
|
"deprecated": "Use `token` instead.",
|
|
678
595
|
"type": "string"
|
|
679
596
|
},
|
|
597
|
+
"clientId": {
|
|
598
|
+
"description": "OAuth client ID for Bitbucket Cloud.",
|
|
599
|
+
"visibility": "secret",
|
|
600
|
+
"type": "string"
|
|
601
|
+
},
|
|
602
|
+
"clientSecret": {
|
|
603
|
+
"description": "OAuth client secret for Bitbucket Cloud.",
|
|
604
|
+
"visibility": "secret",
|
|
605
|
+
"type": "string"
|
|
606
|
+
},
|
|
680
607
|
"commitSigningKey": {
|
|
681
608
|
"description": "PGP signing key for signing commits.",
|
|
682
609
|
"visibility": "secret",
|
|
683
610
|
"type": "string"
|
|
684
611
|
}
|
|
685
|
-
}
|
|
686
|
-
"required": [
|
|
687
|
-
"username"
|
|
688
|
-
]
|
|
612
|
+
}
|
|
689
613
|
}
|
|
690
614
|
},
|
|
691
615
|
"bitbucketServer": {
|
|
@@ -847,6 +771,10 @@
|
|
|
847
771
|
"items": {
|
|
848
772
|
"type": "string"
|
|
849
773
|
}
|
|
774
|
+
},
|
|
775
|
+
"publicAccess": {
|
|
776
|
+
"description": "If true, then an installation token will be issued for access when no other token is available.",
|
|
777
|
+
"type": "boolean"
|
|
850
778
|
}
|
|
851
779
|
},
|
|
852
780
|
"required": [
|
|
@@ -1258,6 +1186,92 @@
|
|
|
1258
1186
|
},
|
|
1259
1187
|
"packageName": "@backstage/plugin-catalog"
|
|
1260
1188
|
},
|
|
1189
|
+
{
|
|
1190
|
+
"path": "../../plugins/permission-common/config.d.ts",
|
|
1191
|
+
"value": {
|
|
1192
|
+
"type": "object",
|
|
1193
|
+
"properties": {
|
|
1194
|
+
"permission": {
|
|
1195
|
+
"description": "Configuration options for Backstage permissions and authorization",
|
|
1196
|
+
"type": "object",
|
|
1197
|
+
"properties": {
|
|
1198
|
+
"enabled": {
|
|
1199
|
+
"description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
|
|
1200
|
+
"visibility": "frontend",
|
|
1201
|
+
"type": "boolean"
|
|
1202
|
+
},
|
|
1203
|
+
"EXPERIMENTAL_enableBatchedRequests": {
|
|
1204
|
+
"visibility": "frontend",
|
|
1205
|
+
"type": "boolean"
|
|
1206
|
+
}
|
|
1207
|
+
}
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1211
|
+
},
|
|
1212
|
+
"packageName": "@backstage/plugin-permission-common"
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"path": "../../plugins/techdocs/config.d.ts",
|
|
1216
|
+
"value": {
|
|
1217
|
+
"type": "object",
|
|
1218
|
+
"properties": {
|
|
1219
|
+
"techdocs": {
|
|
1220
|
+
"description": "Configuration options for the techdocs plugin",
|
|
1221
|
+
"type": "object",
|
|
1222
|
+
"properties": {
|
|
1223
|
+
"builder": {
|
|
1224
|
+
"description": "Documentation building process depends on the builder attr",
|
|
1225
|
+
"visibility": "frontend",
|
|
1226
|
+
"enum": [
|
|
1227
|
+
"external",
|
|
1228
|
+
"local"
|
|
1229
|
+
],
|
|
1230
|
+
"type": "string"
|
|
1231
|
+
},
|
|
1232
|
+
"legacyUseCaseSensitiveTripletPaths": {
|
|
1233
|
+
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
1234
|
+
"visibility": "frontend",
|
|
1235
|
+
"type": "boolean"
|
|
1236
|
+
},
|
|
1237
|
+
"sanitizer": {
|
|
1238
|
+
"type": "object",
|
|
1239
|
+
"properties": {
|
|
1240
|
+
"allowedIframeHosts": {
|
|
1241
|
+
"description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
|
|
1242
|
+
"visibility": "frontend",
|
|
1243
|
+
"type": "array",
|
|
1244
|
+
"items": {
|
|
1245
|
+
"type": "string"
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
"allowedCustomElementTagNameRegExp": {
|
|
1249
|
+
"description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
|
|
1250
|
+
"visibility": "frontend",
|
|
1251
|
+
"type": "string"
|
|
1252
|
+
},
|
|
1253
|
+
"allowedCustomElementAttributeNameRegExp": {
|
|
1254
|
+
"description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
|
|
1255
|
+
"visibility": "frontend",
|
|
1256
|
+
"type": "string"
|
|
1257
|
+
},
|
|
1258
|
+
"additionalAllowedURIProtocols": {
|
|
1259
|
+
"description": "Allows listed protocols in attributes with URI values\nExample:\n additionalAllowedURIProtocols: ['vscode']\n this will allow all attributes with URI values to have `vscode` protocol like `vscode://some/path` in addition to the default protocols\n matched by DOMPurify's IS_ALLOWED_URI RegExp:",
|
|
1260
|
+
"visibility": "frontend",
|
|
1261
|
+
"type": "array",
|
|
1262
|
+
"items": {
|
|
1263
|
+
"type": "string"
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1272
|
+
},
|
|
1273
|
+
"packageName": "@backstage/plugin-techdocs"
|
|
1274
|
+
},
|
|
1261
1275
|
{
|
|
1262
1276
|
"path": "../backend-plugin-api/config.d.ts",
|
|
1263
1277
|
"value": {
|
|
@@ -2471,25 +2485,9 @@
|
|
|
2471
2485
|
"description": "An optional Valkey client configuration. These options are passed to the `@keyv/valkey` client.",
|
|
2472
2486
|
"type": "object",
|
|
2473
2487
|
"properties": {
|
|
2474
|
-
"
|
|
2475
|
-
"description": "Namespace for
|
|
2476
|
-
"type": "string"
|
|
2477
|
-
},
|
|
2478
|
-
"keyPrefixSeparator": {
|
|
2479
|
-
"description": "Separator to use between namespace and key.",
|
|
2488
|
+
"keyPrefix": {
|
|
2489
|
+
"description": "Namespace and separator used for prefixing keys.",
|
|
2480
2490
|
"type": "string"
|
|
2481
|
-
},
|
|
2482
|
-
"clearBatchSize": {
|
|
2483
|
-
"description": "Number of keys to delete in a single batch.",
|
|
2484
|
-
"type": "number"
|
|
2485
|
-
},
|
|
2486
|
-
"useUnlink": {
|
|
2487
|
-
"description": "Enable Unlink instead of using Del for clearing keys. This is more performant but may not be supported by all Redis versions.",
|
|
2488
|
-
"type": "boolean"
|
|
2489
|
-
},
|
|
2490
|
-
"noNamespaceAffectsAll": {
|
|
2491
|
-
"description": "Whether to allow clearing all keys when no namespace is set.\nIf set to true and no namespace is set, iterate() will return all keys.\nDefaults to `false`.",
|
|
2492
|
-
"type": "boolean"
|
|
2493
2491
|
}
|
|
2494
2492
|
}
|
|
2495
2493
|
},
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="color-scheme" content="light dark"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.0a0ee1fa.js"></script><script defer="defer" src="/static/module-material-ui.bc72d455.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.09813bc2.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.2d7d5373.js"></script><script defer="defer" src="/static/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="color-scheme" content="light dark"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.0a0ee1fa.js"></script><script defer="defer" src="/static/module-material-ui.bc72d455.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.09813bc2.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.2d7d5373.js"></script><script defer="defer" src="/static/main.3c83117c.js"></script><link href="/static/main.5f8bd308.css" rel="stylesheet"><script type="backstage.io/config">[
|
|
2
2
|
{
|
|
3
3
|
"context": "app-config.yaml",
|
|
4
4
|
"data": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
color="#5bbad5"
|
|
44
44
|
/>
|
|
45
45
|
<title><%= config.getString('app.title') %></title>
|
|
46
|
-
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.0a0ee1fa.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.bc72d455.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.09813bc2.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.2d7d5373.js"></script><script defer src="<%= publicPath %>/static/main.
|
|
46
|
+
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.0a0ee1fa.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.bc72d455.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.09813bc2.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.2d7d5373.js"></script><script defer src="<%= publicPath %>/static/main.3c83117c.js"></script><link href="<%= publicPath %>/static/main.5f8bd308.css" rel="stylesheet"></head>
|
|
47
47
|
<body>
|
|
48
48
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
49
49
|
<div id="root"></div>
|