@techdocs/cli 0.0.0-nightly-20260114025400 → 0.0.0-nightly-20260115025113
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 +3 -3
- package/dist/embedded-app/.config-schema.json +205 -205
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/main.0c6dd09c.css +2 -0
- package/dist/embedded-app/static/main.0c6dd09c.css.map +1 -0
- package/dist/package.json.cjs.js +1 -1
- package/package.json +4 -4
- package/dist/embedded-app/static/main.684cd846.css +0 -2
- package/dist/embedded-app/static/main.684cd846.css.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20260115025113
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
8
|
+
- @backstage/backend-defaults@0.0.0-nightly-20260115025113
|
|
9
9
|
- @backstage/catalog-model@1.7.6
|
|
10
10
|
- @backstage/cli-common@0.1.16
|
|
11
11
|
- @backstage/config@1.3.6
|
|
12
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
12
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20260115025113
|
|
13
13
|
|
|
14
14
|
## 1.10.4-next.2
|
|
15
15
|
|
|
@@ -465,6 +465,211 @@
|
|
|
465
465
|
},
|
|
466
466
|
"packageName": "@backstage/plugin-techdocs"
|
|
467
467
|
},
|
|
468
|
+
{
|
|
469
|
+
"path": "../frontend-app-api/config.d.ts",
|
|
470
|
+
"value": {
|
|
471
|
+
"type": "object",
|
|
472
|
+
"properties": {
|
|
473
|
+
"app": {
|
|
474
|
+
"type": "object",
|
|
475
|
+
"properties": {
|
|
476
|
+
"experimental": {
|
|
477
|
+
"type": "object",
|
|
478
|
+
"properties": {
|
|
479
|
+
"packages": {
|
|
480
|
+
"visibility": "frontend",
|
|
481
|
+
"deepVisibility": "frontend",
|
|
482
|
+
"deprecated": "This is no longer experimental; use `app.packages` instead.",
|
|
483
|
+
"anyOf": [
|
|
484
|
+
{
|
|
485
|
+
"type": "object",
|
|
486
|
+
"properties": {
|
|
487
|
+
"include": {
|
|
488
|
+
"type": "array",
|
|
489
|
+
"items": {
|
|
490
|
+
"type": "string"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"exclude": {
|
|
494
|
+
"type": "array",
|
|
495
|
+
"items": {
|
|
496
|
+
"type": "string"
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"const": "all",
|
|
503
|
+
"type": "string"
|
|
504
|
+
}
|
|
505
|
+
]
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
"packages": {
|
|
510
|
+
"description": "Controls what packages are loaded by the new frontend system.",
|
|
511
|
+
"visibility": "frontend",
|
|
512
|
+
"deepVisibility": "frontend",
|
|
513
|
+
"anyOf": [
|
|
514
|
+
{
|
|
515
|
+
"type": "object",
|
|
516
|
+
"properties": {
|
|
517
|
+
"include": {
|
|
518
|
+
"type": "array",
|
|
519
|
+
"items": {
|
|
520
|
+
"type": "string"
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"exclude": {
|
|
524
|
+
"type": "array",
|
|
525
|
+
"items": {
|
|
526
|
+
"type": "string"
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
"const": "all",
|
|
533
|
+
"type": "string"
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
"routes": {
|
|
538
|
+
"type": "object",
|
|
539
|
+
"properties": {
|
|
540
|
+
"bindings": {
|
|
541
|
+
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
542
|
+
"deepVisibility": "frontend",
|
|
543
|
+
"type": "object",
|
|
544
|
+
"additionalProperties": {
|
|
545
|
+
"anyOf": [
|
|
546
|
+
{
|
|
547
|
+
"const": false,
|
|
548
|
+
"type": "boolean"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"type": "string"
|
|
552
|
+
}
|
|
553
|
+
]
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
"extensions": {
|
|
559
|
+
"deepVisibility": "frontend",
|
|
560
|
+
"type": "array",
|
|
561
|
+
"items": {
|
|
562
|
+
"anyOf": [
|
|
563
|
+
{
|
|
564
|
+
"type": "object",
|
|
565
|
+
"additionalProperties": {
|
|
566
|
+
"anyOf": [
|
|
567
|
+
{
|
|
568
|
+
"type": "object",
|
|
569
|
+
"properties": {
|
|
570
|
+
"attachTo": {
|
|
571
|
+
"type": "object",
|
|
572
|
+
"properties": {
|
|
573
|
+
"id": {
|
|
574
|
+
"type": "string"
|
|
575
|
+
},
|
|
576
|
+
"input": {
|
|
577
|
+
"type": "string"
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"required": [
|
|
581
|
+
"id",
|
|
582
|
+
"input"
|
|
583
|
+
]
|
|
584
|
+
},
|
|
585
|
+
"disabled": {
|
|
586
|
+
"type": "boolean"
|
|
587
|
+
},
|
|
588
|
+
"config": {}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"type": "boolean"
|
|
593
|
+
}
|
|
594
|
+
]
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"type": "string"
|
|
599
|
+
}
|
|
600
|
+
]
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"pluginOverrides": {
|
|
604
|
+
"description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
|
|
605
|
+
"deepVisibility": "frontend",
|
|
606
|
+
"type": "array",
|
|
607
|
+
"items": {
|
|
608
|
+
"type": "object",
|
|
609
|
+
"properties": {
|
|
610
|
+
"match": {
|
|
611
|
+
"description": "The criteria for matching plugins to override.",
|
|
612
|
+
"type": "object",
|
|
613
|
+
"properties": {
|
|
614
|
+
"pluginId": {
|
|
615
|
+
"description": "A pattern that is matched against the plugin ID.",
|
|
616
|
+
"type": "string"
|
|
617
|
+
},
|
|
618
|
+
"packageName": {
|
|
619
|
+
"description": "A pattern that is matched against the package name.",
|
|
620
|
+
"type": "string"
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
},
|
|
624
|
+
"info": {
|
|
625
|
+
"description": "Overrides individual top-level fields of the plugin info.",
|
|
626
|
+
"type": "object",
|
|
627
|
+
"properties": {
|
|
628
|
+
"description": {
|
|
629
|
+
"description": "Override the description of the plugin.",
|
|
630
|
+
"type": "string"
|
|
631
|
+
},
|
|
632
|
+
"ownerEntityRefs": {
|
|
633
|
+
"description": "Override the owner entity references of the plugin.",
|
|
634
|
+
"type": "array",
|
|
635
|
+
"items": {
|
|
636
|
+
"type": "string"
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"links": {
|
|
640
|
+
"description": "Override the links of the plugin.",
|
|
641
|
+
"type": "array",
|
|
642
|
+
"items": {
|
|
643
|
+
"type": "object",
|
|
644
|
+
"properties": {
|
|
645
|
+
"title": {
|
|
646
|
+
"type": "string"
|
|
647
|
+
},
|
|
648
|
+
"url": {
|
|
649
|
+
"type": "string"
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
"required": [
|
|
653
|
+
"title",
|
|
654
|
+
"url"
|
|
655
|
+
]
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"required": [
|
|
662
|
+
"info"
|
|
663
|
+
]
|
|
664
|
+
}
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
670
|
+
},
|
|
671
|
+
"packageName": "@backstage/frontend-app-api"
|
|
672
|
+
},
|
|
468
673
|
{
|
|
469
674
|
"path": "../integration/config.d.ts",
|
|
470
675
|
"value": {
|
|
@@ -1036,211 +1241,6 @@
|
|
|
1036
1241
|
},
|
|
1037
1242
|
"packageName": "@backstage/integration"
|
|
1038
1243
|
},
|
|
1039
|
-
{
|
|
1040
|
-
"path": "../frontend-app-api/config.d.ts",
|
|
1041
|
-
"value": {
|
|
1042
|
-
"type": "object",
|
|
1043
|
-
"properties": {
|
|
1044
|
-
"app": {
|
|
1045
|
-
"type": "object",
|
|
1046
|
-
"properties": {
|
|
1047
|
-
"experimental": {
|
|
1048
|
-
"type": "object",
|
|
1049
|
-
"properties": {
|
|
1050
|
-
"packages": {
|
|
1051
|
-
"visibility": "frontend",
|
|
1052
|
-
"deepVisibility": "frontend",
|
|
1053
|
-
"deprecated": "This is no longer experimental; use `app.packages` instead.",
|
|
1054
|
-
"anyOf": [
|
|
1055
|
-
{
|
|
1056
|
-
"type": "object",
|
|
1057
|
-
"properties": {
|
|
1058
|
-
"include": {
|
|
1059
|
-
"type": "array",
|
|
1060
|
-
"items": {
|
|
1061
|
-
"type": "string"
|
|
1062
|
-
}
|
|
1063
|
-
},
|
|
1064
|
-
"exclude": {
|
|
1065
|
-
"type": "array",
|
|
1066
|
-
"items": {
|
|
1067
|
-
"type": "string"
|
|
1068
|
-
}
|
|
1069
|
-
}
|
|
1070
|
-
}
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
"const": "all",
|
|
1074
|
-
"type": "string"
|
|
1075
|
-
}
|
|
1076
|
-
]
|
|
1077
|
-
}
|
|
1078
|
-
}
|
|
1079
|
-
},
|
|
1080
|
-
"packages": {
|
|
1081
|
-
"description": "Controls what packages are loaded by the new frontend system.",
|
|
1082
|
-
"visibility": "frontend",
|
|
1083
|
-
"deepVisibility": "frontend",
|
|
1084
|
-
"anyOf": [
|
|
1085
|
-
{
|
|
1086
|
-
"type": "object",
|
|
1087
|
-
"properties": {
|
|
1088
|
-
"include": {
|
|
1089
|
-
"type": "array",
|
|
1090
|
-
"items": {
|
|
1091
|
-
"type": "string"
|
|
1092
|
-
}
|
|
1093
|
-
},
|
|
1094
|
-
"exclude": {
|
|
1095
|
-
"type": "array",
|
|
1096
|
-
"items": {
|
|
1097
|
-
"type": "string"
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
|
-
}
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"const": "all",
|
|
1104
|
-
"type": "string"
|
|
1105
|
-
}
|
|
1106
|
-
]
|
|
1107
|
-
},
|
|
1108
|
-
"routes": {
|
|
1109
|
-
"type": "object",
|
|
1110
|
-
"properties": {
|
|
1111
|
-
"bindings": {
|
|
1112
|
-
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
1113
|
-
"deepVisibility": "frontend",
|
|
1114
|
-
"type": "object",
|
|
1115
|
-
"additionalProperties": {
|
|
1116
|
-
"anyOf": [
|
|
1117
|
-
{
|
|
1118
|
-
"const": false,
|
|
1119
|
-
"type": "boolean"
|
|
1120
|
-
},
|
|
1121
|
-
{
|
|
1122
|
-
"type": "string"
|
|
1123
|
-
}
|
|
1124
|
-
]
|
|
1125
|
-
}
|
|
1126
|
-
}
|
|
1127
|
-
}
|
|
1128
|
-
},
|
|
1129
|
-
"extensions": {
|
|
1130
|
-
"deepVisibility": "frontend",
|
|
1131
|
-
"type": "array",
|
|
1132
|
-
"items": {
|
|
1133
|
-
"anyOf": [
|
|
1134
|
-
{
|
|
1135
|
-
"type": "object",
|
|
1136
|
-
"additionalProperties": {
|
|
1137
|
-
"anyOf": [
|
|
1138
|
-
{
|
|
1139
|
-
"type": "object",
|
|
1140
|
-
"properties": {
|
|
1141
|
-
"attachTo": {
|
|
1142
|
-
"type": "object",
|
|
1143
|
-
"properties": {
|
|
1144
|
-
"id": {
|
|
1145
|
-
"type": "string"
|
|
1146
|
-
},
|
|
1147
|
-
"input": {
|
|
1148
|
-
"type": "string"
|
|
1149
|
-
}
|
|
1150
|
-
},
|
|
1151
|
-
"required": [
|
|
1152
|
-
"id",
|
|
1153
|
-
"input"
|
|
1154
|
-
]
|
|
1155
|
-
},
|
|
1156
|
-
"disabled": {
|
|
1157
|
-
"type": "boolean"
|
|
1158
|
-
},
|
|
1159
|
-
"config": {}
|
|
1160
|
-
}
|
|
1161
|
-
},
|
|
1162
|
-
{
|
|
1163
|
-
"type": "boolean"
|
|
1164
|
-
}
|
|
1165
|
-
]
|
|
1166
|
-
}
|
|
1167
|
-
},
|
|
1168
|
-
{
|
|
1169
|
-
"type": "string"
|
|
1170
|
-
}
|
|
1171
|
-
]
|
|
1172
|
-
}
|
|
1173
|
-
},
|
|
1174
|
-
"pluginOverrides": {
|
|
1175
|
-
"description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
|
|
1176
|
-
"deepVisibility": "frontend",
|
|
1177
|
-
"type": "array",
|
|
1178
|
-
"items": {
|
|
1179
|
-
"type": "object",
|
|
1180
|
-
"properties": {
|
|
1181
|
-
"match": {
|
|
1182
|
-
"description": "The criteria for matching plugins to override.",
|
|
1183
|
-
"type": "object",
|
|
1184
|
-
"properties": {
|
|
1185
|
-
"pluginId": {
|
|
1186
|
-
"description": "A pattern that is matched against the plugin ID.",
|
|
1187
|
-
"type": "string"
|
|
1188
|
-
},
|
|
1189
|
-
"packageName": {
|
|
1190
|
-
"description": "A pattern that is matched against the package name.",
|
|
1191
|
-
"type": "string"
|
|
1192
|
-
}
|
|
1193
|
-
}
|
|
1194
|
-
},
|
|
1195
|
-
"info": {
|
|
1196
|
-
"description": "Overrides individual top-level fields of the plugin info.",
|
|
1197
|
-
"type": "object",
|
|
1198
|
-
"properties": {
|
|
1199
|
-
"description": {
|
|
1200
|
-
"description": "Override the description of the plugin.",
|
|
1201
|
-
"type": "string"
|
|
1202
|
-
},
|
|
1203
|
-
"ownerEntityRefs": {
|
|
1204
|
-
"description": "Override the owner entity references of the plugin.",
|
|
1205
|
-
"type": "array",
|
|
1206
|
-
"items": {
|
|
1207
|
-
"type": "string"
|
|
1208
|
-
}
|
|
1209
|
-
},
|
|
1210
|
-
"links": {
|
|
1211
|
-
"description": "Override the links of the plugin.",
|
|
1212
|
-
"type": "array",
|
|
1213
|
-
"items": {
|
|
1214
|
-
"type": "object",
|
|
1215
|
-
"properties": {
|
|
1216
|
-
"title": {
|
|
1217
|
-
"type": "string"
|
|
1218
|
-
},
|
|
1219
|
-
"url": {
|
|
1220
|
-
"type": "string"
|
|
1221
|
-
}
|
|
1222
|
-
},
|
|
1223
|
-
"required": [
|
|
1224
|
-
"title",
|
|
1225
|
-
"url"
|
|
1226
|
-
]
|
|
1227
|
-
}
|
|
1228
|
-
}
|
|
1229
|
-
}
|
|
1230
|
-
}
|
|
1231
|
-
},
|
|
1232
|
-
"required": [
|
|
1233
|
-
"info"
|
|
1234
|
-
]
|
|
1235
|
-
}
|
|
1236
|
-
}
|
|
1237
|
-
}
|
|
1238
|
-
}
|
|
1239
|
-
},
|
|
1240
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1241
|
-
},
|
|
1242
|
-
"packageName": "@backstage/frontend-app-api"
|
|
1243
|
-
},
|
|
1244
1244
|
{
|
|
1245
1245
|
"path": "../../plugins/catalog/config.d.ts",
|
|
1246
1246
|
"value": {
|
|
@@ -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.47f251b0.js"></script><script defer="defer" src="/static/module-material-ui.9517effb.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.5a3a2d93.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-parse5.94980036.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.8b5ff4b7.js"></script><script defer="defer" src="/static/vendor.55ff2174.js"></script><script defer="defer" src="/static/main.48ae5130.js"></script><link href="/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.47f251b0.js"></script><script defer="defer" src="/static/module-material-ui.9517effb.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.5a3a2d93.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-parse5.94980036.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.8b5ff4b7.js"></script><script defer="defer" src="/static/vendor.55ff2174.js"></script><script defer="defer" src="/static/main.48ae5130.js"></script><link href="/static/main.0c6dd09c.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.47f251b0.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.9517effb.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.5a3a2d93.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-parse5.94980036.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.8b5ff4b7.js"></script><script defer src="<%= publicPath %>/static/vendor.55ff2174.js"></script><script defer src="<%= publicPath %>/static/main.48ae5130.js"></script><link href="<%= publicPath %>/static/main.
|
|
46
|
+
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.47f251b0.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.9517effb.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.5a3a2d93.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-parse5.94980036.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.8b5ff4b7.js"></script><script defer src="<%= publicPath %>/static/vendor.55ff2174.js"></script><script defer src="<%= publicPath %>/static/main.48ae5130.js"></script><link href="<%= publicPath %>/static/main.0c6dd09c.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>
|