Part of series: Error
Unable to load icon by astro-icon
/ 0.71分钟
更新时间:
我的 Astro 工程在构建的时候报无法找到 icon 图表。我使用的是 astro-icon 库。
15:18:57 ├─ /blog/my-post/index.html[astro-icon] Unable to load icon "carbon:tag-group"!
Error: Unknown builtin plugin "cleanupIDs" specified.
Stack trace:
at file:///.../dist/chunks/index_CkwRwbc7.mjs:254:13
error: script "build" exited with code 1
使用 icon 时需要将其模块添加到工程依赖 package.json
, 可以使用安装命令。
bun add -d @iconify-json/carbon
或者直接下载改 svg 文件放到工程目录 src/icons
, 可以在 iconify 下载 icon 图标。
astro-icon
使用起来还是挺方便的,默认可以自动导入 mdi
模块下的 icon, 其他模块需显示声明。
Links: