chore(icons): 移除未使用的iconify图标包依赖

移除开发依赖中未实际使用的多个@iconify/icons-*包,仅保留ri和simple-icons。
这简化了依赖管理并减少了安装体积。
This commit is contained in:
dap
2026-01-23 11:39:44 +08:00
parent fa4d16c542
commit f9c85bca3f
2 changed files with 1 additions and 34 deletions

View File

@@ -64,7 +64,7 @@ async function loadSvgIcons() {
await Promise.all(
Object.entries(svgEagers).map((svg) => {
const [key, body] = svg as [string, { default: string } | string];
const [key, body] = svg as [string, string | { default: string }];
// ./icons/xxxx.svg => xxxxxx
const start = key.lastIndexOf('/') + 1;