feat(manifest): 删除无用文件

This commit is contained in:
chengcheng
2025-08-20 15:15:41 +08:00
parent 3443a50025
commit 0411816b2e
4 changed files with 2 additions and 15 deletions
-9
View File
@@ -1,9 +0,0 @@
export function loadRemoteStyle(url: string) {
if (!document.getElementById(url)) {
const link = document.createElement("link");
link.id = url;
link.rel = "stylesheet";
link.href = url;
document.head.appendChild(link);
}
}