如何将链接添加到Gatsby配置文件

时间:2019-10-11 06:36:35

标签: reactjs gatsby

我正在尝试在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',
      },
    },
  ],
}

1 个答案:

答案 0 :(得分:0)

Here是您可以在gatsby-cnfig中添加的选项。从文档中:

  

可在gatsby-config.js中设置的选项包括:

     
      
  1. siteMetadata(对象)
  2.   
  3. 插件(数组)
  4.   
  5. pathPrefix(字符串)
  6.   
  7. polyfill(布尔值)
  8.   
  9. 映射(对象)
  10.   
  11. 代理(对象)
  12.   
  13. developMiddleware(功能)
  14.   

“链接到快捷方式”不属于这些选项。

TLDR:不能。