From 6e35243eae7f876177462b32763b3749d84c7d03 Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 13 Dec 2024 17:19:35 -0500 Subject: [PATCH] chore(docs): add missing `search: ''` on `remotePatterns` (#73925) (#73927) Backport https://github.com/vercel/next.js/pull/73925 to 14.x --- .../01-building-your-application/06-optimizing/01-images.mdx | 1 + errors/next-image-unconfigured-host.mdx | 1 + examples/cms-storyblok/README.md | 2 ++ 3 files changed, 4 insertions(+) diff --git a/docs/02-app/01-building-your-application/06-optimizing/01-images.mdx b/docs/02-app/01-building-your-application/06-optimizing/01-images.mdx index 68ac3e282661f..698d8c6cce291 100644 --- a/docs/02-app/01-building-your-application/06-optimizing/01-images.mdx +++ b/docs/02-app/01-building-your-application/06-optimizing/01-images.mdx @@ -138,6 +138,7 @@ module.exports = { hostname: 's3.amazonaws.com', port: '', pathname: '/my-bucket/**', + search: '', }, ], }, diff --git a/errors/next-image-unconfigured-host.mdx b/errors/next-image-unconfigured-host.mdx index ea0496b71fbbd..d6622a608d5f6 100644 --- a/errors/next-image-unconfigured-host.mdx +++ b/errors/next-image-unconfigured-host.mdx @@ -19,6 +19,7 @@ module.exports = { hostname: 'assets.example.com', port: '', pathname: '/account123/**', + search: '', }, ], }, diff --git a/examples/cms-storyblok/README.md b/examples/cms-storyblok/README.md index 00ca1e90f1750..0a67e8509a09a 100644 --- a/examples/cms-storyblok/README.md +++ b/examples/cms-storyblok/README.md @@ -149,12 +149,14 @@ module.exports = { hostname: 'a.storyblok.com', port: '', pathname: '**', + search: '', }, { protocol: 'https', hostname: 'images.unsplash.com', port: '', pathname: '**', + search: '', }, ], },