'Next/Image is failing on one image

I'm using next/image for my images on my site. All my images are being served through prismic and I've added the cdn domain to my next.config file.

This is how I'm using the component

<Image
                src={image}
                alt={title}
                width={600}
                height={450}
                layout="responsive"
                loading="eager"
              />

Every image is loading perfect, except for one. I'm getting a 404 despite all the images coming from the same source. When I replace next/image with a normal img tag it works fine. I'm not sure how to debug this. Any advice.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source