From ef82e8afdf4882aac6c77865416b18406898f6a1 Mon Sep 17 00:00:00 2001 From: Cody Olsen Date: Thu, 10 Feb 2022 22:57:12 +0100 Subject: [PATCH] Fix error thrown by `next/image` in the Sanity example (#34203) --- examples/cms-sanity/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/cms-sanity/next.config.js diff --git a/examples/cms-sanity/next.config.js b/examples/cms-sanity/next.config.js new file mode 100644 index 0000000000000..da5f2c88763ef --- /dev/null +++ b/examples/cms-sanity/next.config.js @@ -0,0 +1,5 @@ +module.exports = { + images: { + domains: ['cdn.sanity.io'], + }, +}