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/**", }, ], },