From 7ab8140fa2e383d269389d5d740bde23bdbe0039 Mon Sep 17 00:00:00 2001 From: IMSRS <53367382+theunhackable@users.noreply.github.com> Date: Mon, 14 Aug 2023 20:59:15 +0530 Subject: [PATCH] Update next.config.js added images source url for the Image tag to function with incoming thumbnails --- next04/next.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/next04/next.config.js b/next04/next.config.js index dafb0c88..2f8abbef 100644 --- a/next04/next.config.js +++ b/next04/next.config.js @@ -3,6 +3,8 @@ const nextConfig = { experimental: { appDir: true, }, + images: { + domains: ['upload.wikimedia.org'] } module.exports = nextConfig