From 15bc69efa6e1593f164ca07e7ea163e7031af06f Mon Sep 17 00:00:00 2001 From: spokequenouille Date: Sun, 17 Jan 2021 20:26:17 +0100 Subject: [PATCH] :construction: update url --- src/common/config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/config.js b/src/common/config.js index ef3a25c..4ff1d14 100644 --- a/src/common/config.js +++ b/src/common/config.js @@ -1,6 +1,5 @@ export const API_URL = process.env.NODE_ENV === "production" - ? process.env.PROD_BACK_URL || - "https://frozen-falls-06091.herokuapp.com/api" + ? "https://frozen-falls-06091.herokuapp.com/api" : "http://localhost:2020/api"; export default API_URL;