admin管理员组

文章数量:1334342

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?

本文标签: Nextjs 403 error upstream image response failedStack Overflow