Revert "Build swagger ui in seperate webpack build" (#104580)

Revert "Build swagger ui in seperate webpack build (#102046)"

This reverts commit 314e337d76.
This commit is contained in:
Josh Hunt
2025-04-25 22:07:43 +01:00
committed by GitHub
parent fe62a7a708
commit 759aa12d2b
17 changed files with 259 additions and 116 deletions
+8
View File
@@ -42,6 +42,8 @@ type EntryPointAssets struct {
CSSFiles []EntryPointAsset `json:"cssFiles"`
Dark string `json:"dark"`
Light string `json:"light"`
Swagger []EntryPointAsset `json:"swagger"`
SwaggerCSSFiles []EntryPointAsset `json:"swaggerCssFiles"`
}
type EntryPointAsset struct {
@@ -62,4 +64,10 @@ func (a *EntryPointAssets) SetContentDeliveryURL(prefix string) {
for i, p := range a.CSSFiles {
a.CSSFiles[i].FilePath = prefix + p.FilePath
}
for i, p := range a.Swagger {
a.Swagger[i].FilePath = prefix + p.FilePath
}
for i, p := range a.SwaggerCSSFiles {
a.SwaggerCSSFiles[i].FilePath = prefix + p.FilePath
}
}