Some additional info:
- I'm using Next.JS 13.4.4
- These products are published and available
- next.config.js has the domains properly added to both images.domains and images.remotepatterns as seen below:
const nextConfig = { images: { domains: ["img.itch.zone", "itch.io"], remotePatterns: [ { protocol: "https", hostname: "img.itch.zone", port: "", }, { protocol: "https", hostname: "itch.io", port: "", }, ], }, };