【发布时间】:2021-07-20 14:24:26
【问题描述】:
我设法实现了 gatsby-plugin-react-svg 并使其工作,但之后我看到所有库图标都再见了。
如果我在我的 svg 文件夹中添加更多 SVG 没关系,但是 Boxicon 库 中的所有图标都不见了。
我想使用图标库和我的自定义 svg。
这就是我的 gatsby-config.js 文件的样子
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /svg/,
}
}
},
在 JSX 中我使用这样的图标:
<i className="bx bxs-user-circle"/>
但是现在给我看一个小方块
【问题讨论】: