Next.js Discord

Discord Forum

Can I disable the next-image-unconfigured-host?

Answered
SpicyJungle posted this in #help-forum
Open in Discord
Hi, is it possible to disable next-image-unconfigured-host? The oauth I use delivers images from many different CDNs, so it's near impossible to whitelist all.
Answered by Ray
I think you can try this in next.config.js
images: {
    remotePatterns: [{ hostname: "*" }],
  },
View full answer

1 Reply

Answer