fix(html): remove redundant CDN CSS files and inline background skin styles (#1071)

This commit is contained in:
rahim
2026-03-20 16:50:13 -07:00
committed by GitHub
parent 275aebdc8f
commit 335bda5646
11 changed files with 19 additions and 46 deletions
+1 -2
View File
@@ -27,6 +27,5 @@ export function generateCdnCode(useCase: UseCase, skin: Skin, renderer: Renderer
scriptLines.push(`<script type="module" src="${CDN_BASE}/media/${mediaSubpath}.js"></script>`);
}
return `${scriptLines.join('\n')}
<link rel="stylesheet" href="${CDN_BASE}/${name}.css" />`;
return scriptLines.join('\n');
}