Я видел это в другом месте и перепробовал множество вещей, но не могу заставить его работать на меня. Фотографии тела .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)