From 0369dfbf37caaf523b7d8c87a17cf72df2d08a25 Mon Sep 17 00:00:00 2001 From: Bouncey Date: Tue, 5 Feb 2019 20:28:45 +0000 Subject: [PATCH] fix: Add news to the env file --- config/env.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/env.js b/config/env.js index 62329d8ed7..9d240e1e74 100644 --- a/config/env.js +++ b/config/env.js @@ -9,13 +9,15 @@ const { HOME_LOCATION: home, API_LOCATION: api, FORUM_LOCATION: forum, + NEWS_LOCATION: news, LOCALE: locale, } = process.env; const locations = { homeLocation: home, apiLocation: api, - forumLocation: forum + forumLocation: forum, + newsLocation: news }; module.exports = Object.assign(locations, { locale });