gpt4 book ai didi

Gatsby + Contentful + Netlify - 如何在生产中渲染 tracedSVG 图像?

转载 作者:行者123 更新时间:2023-12-05 08:31:24 28 4
gpt4 key购买 nike

我正在使用 GatbsyContentful CMS 和 Netlify 构建网站。它看起来很棒并且可以在本地运行,但是我在使用 tracedSVG 选项制作流体图像时遇到了问题。 Netlify 部署过去有时会工作,当我向项目添加更多图像时,现在会不断中断并出现以下错误(并不总是在同一页面中):

10:53:45 AM: The GraphQL query from /opt/build/repo/src/pages/index.js failed.
10:53:45 AM: Errors:
10:53:45 AM: VipsJpeg: Corrupt JPEG data: premature end of data segment
10:53:45 AM: VipsJpeg: out of order read at line 544
10:53:45 AM: GraphQL request:54:3
10:53:45 AM: 53 | fragment GatsbyContentfulFluid_tracedSVG on ContentfulFluid {
10:53:45 AM: 54 | tracedSVG
10:53:45 AM: | ^
10:53:45 AM: 55 | aspectRatio

或者有时

error
The GraphQL query from /opt/build/repo/src/pages/index.js failed.
Errors: Input file contains unsupported image format
GraphQL request:40:3
| fragment GatsbyContentfulFluid_tracedSVG on ContentfulFluid {
| tracedSVG
| ^
| aspectRatio

在极少数情况下

Errors:
VipsJpeg: Empty input file

(最后一个没有意义,因为图像出现在 Contentful 中并且是我的内容模型的必填字段)

如前所述; GraphQL 查询从 Contentful 本地工作中检索 tracedSVG 图像。我的代码如下:

import React from "react"
import { Link, graphql } from "gatsby"
import Img from "gatsby-image"

const IndexPage = ({ data: { allContentfulIndexPage }) => {
const { myImage } = allContentfulIndexPage.edges[0].node

return (
<div>
{...someIrrelevantCodeToTheQuestion}
<Img fluid={myImage.fluid}/>
</div>
)
}

export default IndexPage

export const query = graphql`
query IndexPageQuery {
allContentfulIndexPage {
edges {
node {
myImage {
fluid {
...GatsbyContentfulFluid_tracedSVG
}
}
}
}
}
}
`

通过使用 GraphiQL,我发现在本地使用 tracedSVG 而不是 ...GatsbyContentfulFluid_tracedSVG 也可以在本地工作,但它在 Production/Netlify 环境中同样会崩溃。我考虑过使用 png 图像而不是 jpg 因为错误表明文件本身有问题,尽管它们在本地渲染良好但等效的 png 大小会减慢网站速度(a 100kB 的 jpg 图像在 png 中大约为 900kb)。

在生产中是否有人遇到过关于使用 jpg 图像渲染 tracedSVG 的相同问题?如果是这种情况,您是如何解决以阻止反复发生的崩溃的?谢谢。

最佳答案

我发布这个问题已经一个月了,所以我认为我应该发布我的非解决方案,但更像是一种变通方法,以防有人遇到同样的问题。看起来 GatsbyContentfulFluid_tracedSVG 实际上在生产中被破坏了,这个错误迄今为止还没有解决。

我只是决定恢复使用 fluid 解决方案而不是 tracedSVG,因为它在开发和生产环境中都有效,所以将图像作为

<Img
fluid={node.image.fluid} />

和查询为

node {
image {
fluid {
...GatsbyContentfulFluid
}
}
}

关于Gatsby + Contentful + Netlify - 如何在生产中渲染 tracedSVG 图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58974472/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com