From dbdd912c73c53add4b8ac4fb3b13b3920dc3b333 Mon Sep 17 00:00:00 2001 From: verzelea Date: Sun, 17 Jan 2021 15:24:46 +0100 Subject: [PATCH] :wrench: change url in settings --- src/common/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.js b/src/common/config.js index a04266f..e5859c1 100644 --- a/src/common/config.js +++ b/src/common/config.js @@ -1,5 +1,5 @@ export const API_URL = process.env.NODE_ENV === "production" - ? process.env.PROD_BACK_URL || "https://devopstpfinal-front.herokuapp.com/api" + ? "https://devoptpfinal.herokuapp.com/" : "http://localhost:2020/api"; export default API_URL;