From 80389a4f3369617c00afb74ae15a6ee0d517d86b Mon Sep 17 00:00:00 2001 From: sirin Date: Wed, 9 Oct 2024 14:24:25 +0700 Subject: [PATCH] Update next.config.mjs --- next.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index db847a3..9bf4e22 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,19 +1,19 @@ const SUPABASE_URL = process.env.NEXT_PUBLIC_SUPABASE_URL_SOURCE; const nextConfig = { - reactStrictMode: true, // From the second config + reactStrictMode: true, images: { remotePatterns: [ { protocol: "https", hostname: SUPABASE_URL, port: "", - pathname: "/storage/v1/object/sign/**", // From the second config + pathname: "/storage/v1/object/sign/**", }, { protocol: "https", hostname: "upload.wikimedia.org", - pathname: "/wikipedia/**", // From the first config + pathname: "/wikipedia/**", }, ], },