From 9cdcf1918bdd26906be2aba00aa263b3c6cdb585 Mon Sep 17 00:00:00 2001 From: Ore Ogundipe Date: Tue, 20 Aug 2024 07:15:48 -0700 Subject: [PATCH] fix: see if adding this mapping fixes it --- frontend/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/next.config.js b/frontend/next.config.js index 75f186b3..ef6ad63d 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -9,4 +9,9 @@ module.exports = { }, ]; }, + env: { + NEXT_PUBLIC_FUSION_RELAY_URL: process.env.NEXT_PUBLIC_FUSION_RELAY_URL, + NEXT_PUBLIC_FUSION_NOSTR_PUBLIC_KEY: process.env.NEXT_PUBLIC_FUSION_NOSTR_PUBLIC_KEY, + NEXT_PUBLIC_NEUROFUSION_BACKEND_URL: process.env.NEXT_PUBLIC_NEUROFUSION_BACKEND_URL, + }, };