Hey,
I am getting 400 when trying to fetch any remote image.
Images work locally with npm run build && npn run start
Can someone help me debug and fix this error?
Images are hosted on Firestore
The link to an image that doesn't work:
And heres my config nextjs config:
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'sanalliset.fi',
pathname: '/'
},
{
hostname: 'firebasestorage.googleapis.com',
pathname: '/'
},
{
hostname: 'sanalliset.netlify.app',
pathname: '/**'
},
]
},
};
export default nextConfig;