Skip to content

Commit 6e35243

Browse files
authored
chore(docs): add missing search: '' on remotePatterns (#73925) (#73927)
Backport #73925 to 14.x
1 parent 54919d2 commit 6e35243

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

docs/02-app/01-building-your-application/06-optimizing/01-images.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ module.exports = {
138138
hostname: 's3.amazonaws.com',
139139
port: '',
140140
pathname: '/my-bucket/**',
141+
search: '',
141142
},
142143
],
143144
},

errors/next-image-unconfigured-host.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
hostname: 'assets.example.com',
2020
port: '',
2121
pathname: '/account123/**',
22+
search: '',
2223
},
2324
],
2425
},

examples/cms-storyblok/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,14 @@ module.exports = {
149149
hostname: 'a.storyblok.com',
150150
port: '',
151151
pathname: '**',
152+
search: '',
152153
},
153154
{
154155
protocol: 'https',
155156
hostname: 'images.unsplash.com',
156157
port: '',
157158
pathname: '**',
159+
search: '',
158160
},
159161
],
160162
},

0 commit comments

Comments
 (0)