From 259fa9546d60b6419607c63e6841f1104ad568c3 Mon Sep 17 00:00:00 2001 From: "Andy Chan (12beesinatrenchcoat)" Date: Sat, 23 Nov 2024 22:26:02 -0500 Subject: [PATCH] Replace images.domain with images.remotePatterns images.domains is deprecated as of Next 14. --- compass/next.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compass/next.config.js b/compass/next.config.js index 3173a01..2376ac8 100644 --- a/compass/next.config.js +++ b/compass/next.config.js @@ -1,7 +1,11 @@ /** @type {import('next').NextConfig} */ const nextConfig = { images: { - domains: ["notioly.com"], + remotePatterns: [ + { + hostname: "notioly.com", + }, + ], }, };