I have set the remotPatterns in next.config.ts:
const nextConfig: NextConfig = {
images:{
remotePatterns: [{
protocol: "https",
hostname: "**",
}]
}
};
and my Image component is like:
<Image
src=".webp?method=shortest&qst=6&quality=15"
height={300}
width={300}
priority={true}
alt=""
/>
but still get the 403 error, is it related to some authenticated issues with Midjourney?