Error: Array must contain at most 50 element(s) at "images.remotePatterns" #60556
Answered
by
ephraimduncan
albertolive
asked this question in
Help
-
SummaryHi, I'm creating a project showing all Catalonia events in a single place. I'm getting the images from different sources and adding them to Thanks in advance Additional informationNo response Example |
Beta Was this translation helpful? Give feedback.
Answered by
ephraimduncan
Jan 12, 2024
Replies: 1 comment
-
|
You can try this but then your images can be served from every other domain. const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
albertolive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can try this but then your images can be served from every other domain.