Merged PR 18230: build(frontend): fix frontend manifest generation

build(frontend): fix frontend manifest generation
This commit is contained in:
Steffen Jost 2025-03-13 14:05:37 +00:00
commit 4fb7a71cfc

View File

@ -60,7 +60,8 @@ await esbuild.build({
processOutput(assets) {
const orderAssets = {
main: assets['main'],
...assets
polyfill: assets['polyfill'],
icons: { "svg": assets['']['svg'][0] },
};
return JSON.stringify(orderAssets, null, ' ');
},