Гэтсби замечание изображения не отображает изображение - PullRequest
1 голос
/ 30 апреля 2020

Я видел это в другом месте и перепробовал множество вещей, но не могу заставить его работать на меня. Фотографии тела .md не будут отображаться через gatsby -mark-images. Я также обновил все до новейших версий.

Обновление теперь показывает полный файл конфигурации

config:

const path = require(`path`)

module.exports = {
  siteMetadata: {
    title: `xxx`,
    description: `xxx`,
    author: `xxx`,
  },
  plugins: [
    {
      resolve: `gatsby-remark-images`,
            options: {
              maxWidth: 1500,
              withWebp: true,
              showCaptions: true,
              quality: 100,

            },
    },
    `gatsby-transformer-sharp`,
    `gatsby-transformer-remark`,

    {
      resolve: `gatsby-source-filesystem`,
      options: {
        name: `images`,
        path: `${__dirname}/src/images`,
      },
    },

    {
      resolve: `gatsby-source-filesystem`,
      options: {
        name: `markdown-pages`,
        path: `${__dirname}/src/markdown-pages`,
      },
    },


    `gatsby-plugin-sharp`,
    `gatsby-plugin-react-helmet`,
    `gatsby-plugin-styled-components`,


    {
      resolve: `gatsby-plugin-manifest`,
      options: {
        name: `gatsby-starter-default`,
        short_name: `starter`,
        start_url: `/`,
        background_color: `white`,
        theme_color: `white`,
        display: `minimal-ui`,
        icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
      },
    },
  ],
}

внутри md:

![fail](../images/demo/fail.jpeg)

1 Ответ

1 голос
/ 01 мая 2020

Чтобы использовать синтаксис по умолчанию для изображений в уценке, вы можете указать плагин gatsby-images-remark с точностью до gatsby-transformer-remark как

{
  resolve: `gatsby-transformer-remark`,
  options: {
    plugins: [
      {
        resolve: `gatsby-remark-images`,
        options: {
          maxWidth: 1500,
          withWebp: true,
          showCaptions: true,
          quality: 100,
        },
      },
    ],
  },
},

Проверьте документацию gatsby Больше подробностей.

...