我正在使用字体很棒的 svg 图标,但我意识到它们可能对我网站的 LCP 产生重大影响,所以我试图替换它们。我进入我的 html 并复制了 svg 代码,并将这些 svg 组件放入 svg 文件中。它们在我的 Photoshop 仿制品中作为图像打开,所以我认为它们应该很好。
当我尝试将它们包含在我的页面中时
import FacebookIcon from '../images/svg/facebookF.svg'
import Email from '../images/svg/email.svg'
<FacebookIcon />
<Email />
并将以下内容添加到我的gatsby-config.js
(安装后gatsby-plugin-react-svg
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: "/src/images/svg/"
}
}
}
我收到错误
InvalidCharacterError: String contains an invalid character
这个错误发生在我的 MRE 中,你可以在这个Github repo上查看。在我的实际程序中,svgs 没有显示,但网页加载正常。