Skip to content

Commit

Permalink
chore(docs): add missing search: '' on remotePatterns (#73925) (#…
Browse files Browse the repository at this point in the history
…73927)

Backport #73925 to 14.x
  • Loading branch information
styfle authored Dec 13, 2024
1 parent 54919d2 commit 6e35243
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ module.exports = {
hostname: 's3.amazonaws.com',
port: '',
pathname: '/my-bucket/**',
search: '',
},
],
},
Expand Down
1 change: 1 addition & 0 deletions errors/next-image-unconfigured-host.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module.exports = {
hostname: 'assets.example.com',
port: '',
pathname: '/account123/**',
search: '',
},
],
},
Expand Down
2 changes: 2 additions & 0 deletions examples/cms-storyblok/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,14 @@ module.exports = {
hostname: 'a.storyblok.com',
port: '',
pathname: '**',
search: '',
},
{
protocol: 'https',
hostname: 'images.unsplash.com',
port: '',
pathname: '**',
search: '',
},
],
},
Expand Down

0 comments on commit 6e35243

Please sign in to comment.