我正在与盖茨比合作,我想用降价促销的图片加载帖子。
我正在使用本教程: https://www.gatsbyjs.org/docs/working-with-images-in-markdown/
我正确加载和删除了“ featuredImage”,然后模糊了跨度。
但是Markdown内部的图像会被加载,但是模糊的跨度仍会保留在页面上。
我的gatsby-config.js
//https://www.gatsbyjs.org/docs/adding-markdown-pages/
module.exports = {
siteMetadata: {
title: `Tzook Blog`,
description: `My old blog in new gatsby`,
author: `@tzookb`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/content/`
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-mdx`,
options: {
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1200
},
},
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-default`,
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
`gatsby-plugin-emotion`
],
}
查看以下图片:
答案 0 :(得分:1)
对此cwgw's comment上的open gatsby issue找到了解决方法:
深入研究,看起来盖茨比只在一个特定路径
options.plugins
上寻找“ subplugins”。
gatsby-plugin-mdx
使用options.gatsbyRemarkPlugins
。这对于在插件自身处理markdown时进行转换很合适,但是Gatsby特定的api文件(例如gatsby-browser.js
不会加载,因为Gatsby不知道它们存在。如果您尝试这个…
{
resolve: 'gatsby-plugin-mdx',
options: {
gatsbyRemarkPlugins: [ `gatsby-remark-images` ],
plugins: [ `gatsby-remark-images` ],
}
},
…一切正常。
答案 1 :(得分:1)
ksav的解决方案对我有用-如果有人感到困惑,这是此语法的缩写:
{
resolve: 'gatsby-plugin-mdx',
options: {
gatsbyRemarkPlugins: [{ resolve: 'gatsby-remark-images' }],
plugins: [{ resolve: 'gatsby-remark-images' }],
},
带有键“ resolve”的对象用于指定插件名称,而不是简单地将其作为字符串传递给数组。