如何将选项传递给 gatsby-plugin-typography

How to pass options to gatsby-plugin-typography

official tutorial 之后,我安装了 gatsby-plugin-typography,它正在开发服务器中加载和运行。

然而,我尝试在 gatsby-config.js 中添加的任何选项都没有效果(既不会导致构建错误,也不会产生任何视觉效果)。

例如。以下为我的gatsby-config.js内容,

 module.exports = {
  plugins: [
    {
      resolve: `gatsby-plugin-typography`,
      options: {
        configModule: `./src/utils/anyoldcrap.js`,
      },
    },
  ]
}

'configModule' 键指向什么并不重要——无论它是不存在的文件、格式​​错误的 .js 文件还是正确的 .js 文件,它都没有影响。

这里的教程是不是出错了?是否在某处记录了 gatsby 插件的配置机制?

我也在为这个绞尽脑汁。原来教程已经过时了!

只需将 configModule 更改为 pathToConfigModule 就可以了。

如果您查看插件文件夹下的 gatsby-node.js,您会看到它已重命名。