Gatsby-source-wordpress getting 404 for some images on deployment

i am getting 404 for some images on deplyment. i added

 production: {
              allow404Images: true
      }

but it did not help

12:43:58 PM: error failed to process https://simabove.com/wp-content/uploads/nsl_avatars/977565cf289f4002bd17188d58279116.png
12:43:58 PM: HTTPError: Response code 404 (Not Found)
12:43:58 PM: 
12:43:58 PM: 
12:43:58 PM:   Error: failed to process https://simabove.com/wp-content/uploads/nsl_avatars/9  77565cf289f4002bd17188d58279116.png
12:43:58 PM:   HTTPError: Response code 404 (Not Found)

Hi, @edmundspriede. The image is missing at the source:

$ curl --compressed -svo /dev/null --stderr - https://simabove.com/wp-content/uploads/nsl_avatars/977565cf289f4002bd17188d58279116.png  | egrep '^(<|>)'
> GET /wp-content/uploads/nsl_avatars/977565cf289f4002bd17188d58279116.png HTTP/2
> Host: simabove.com
> User-Agent: curl/8.7.1
> Accept: */*
> Accept-Encoding: deflate, gzip
>
< HTTP/2 404
< x-dns-prefetch-control: on
< expires: Wed, 11 Jan 1984 05:00:00 GMT
< cache-control: no-cache, must-revalidate, max-age=0
< content-type: text/html; charset=UTF-8
< vary: Accept-Encoding
< server: LiteSpeed
< alt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"
< x-litespeed-cache: hit
< content-encoding: gzip
< content-length: 27578
< date: Mon, 30 Dec 2024 23:35:15 GMT
<

The image simply does not exist at the simabove.com site. As simabove.com is not hosted at Netlify, this is not an issue caused by Netlify but an issue with the third-party site itself.

i know that but i run gatsby wordrpess for valid WP site, so why there are errors. image is not there but no idea where it comes from. anyways i should be able to bypass that

hey @edmundspriede thanks for following up! can you clarify whether these 404s are actually causing the builds to fail? if so, an example build log along with the full gatsby-source-wordpress section in your gatsby-config file will help us dig deeper. thanks again!