我正在尝试在gatsby-config.js文件中插入快捷方式图标的链接,但似乎不起作用。显然我也在使用graphql。
module.exports = {
siteMetadata: {
title: 'xxxx',
description: 'xxxx',
keywords:
'test test test',
link: [
{
rel: 'shortcut icon',
url:
'https://xxxx.png',
},
],
},
plugins: ['gatsby-plugin-react-helmet'],
plugins: [
{
resolve: 'gatsby-plugin-html-attributes',
options: {
lang: 'en',
},
},
],
}
答案 0 :(得分:0)
Here是您可以在gatsby-cnfig
中添加的选项。从文档中:
可在gatsby-config.js中设置的选项包括:
- siteMetadata(对象)
- 插件(数组)
- pathPrefix(字符串)
- polyfill(布尔值)
- 映射(对象)
- 代理(对象)
- developMiddleware(功能)
“链接到快捷方式”不属于这些选项。
TLDR:不能。