From 574cba9ed97354c555533d6010ce12ca735b9c03 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Sat, 25 Feb 2023 12:19:27 +0100 Subject: [PATCH] fix variable name in previous commit --- config/envs.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/envs.mjs b/config/envs.mjs index 4de13ed1b..d70969849 100644 --- a/config/envs.mjs +++ b/config/envs.mjs @@ -2,7 +2,7 @@ import dotenv from 'dotenv'; dotenv.config(); const envs = { - ID_PRESETS_CDN_URL: JSON.stringify(process.env.ID_PRESETS_CDN_URL || null) + ENV__ID_PRESETS_CDN_URL: JSON.stringify(process.env.ID_PRESETS_CDN_URL || null) } export default envs;