Gatsby StaticImage 没有出现在开发和构建中

问题描述 投票:0回答:0

我有以下代码来显示图像,但在开发时没有显示出来。

<StyledPic>
          <div className="wrapper">
            <StaticImage
              className="img"
              src="../../images/me.jpg"
              width={500}
              quality={95}
              formats={["AUTO", "WEBP", "AVIF"]}
              alt="Headshot"
            />
          </div>
        </StyledPic>

我的文件结构如下

file structure

页面构建没有问题,只是没有图片

page view after build

页面 html 如下所示。好像找不到图片位置,但我不知道这里出了什么问题。

page html code

html image npm web gatsby
© www.soinside.com 2019 - 2024. All rights reserved.