Я пытаюсь вставить ссылку на ярлык в файл 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',
},
},
],
}