From d08be54d605507589b4f29f47046d401f772c478 Mon Sep 17 00:00:00 2001 From: thebeyondr <19380973+thebeyondr@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:58:33 -0500 Subject: [PATCH] fix: :wrench: Update remotePatterns in next.config.mjs --- next.config.mjs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index f8d43580..5ad72da7 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -7,9 +7,12 @@ const nextConfig = { images: { remotePatterns: [ { - hostname: process.env.DEPLOY_ENV === "production" ? "directus.voicedeck.org" : "directus.vd-dev.org", + hostname: "directus.voicedeck.org", protocol: "https", - } + }, { + hostname: "directus.vd-dev.org", + protocol: "https", + }, ] }, redirects: async () => {