From 260254d07975b83ead22bf5765a5fafed75e449c Mon Sep 17 00:00:00 2001 From: Louis Dutoit Date: Fri, 15 Jan 2021 21:18:27 +0100 Subject: [PATCH] :wrench: Update config --- 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 357c03f..61e5ca5 100644 --- a/src/common/config.js +++ b/src/common/config.js @@ -1,5 +1,5 @@ export const API_URL = process.env.NODE_ENV === "production" - ? "https://devops-final-heroku.herokuapp.com/" + ? "https://tp-devops-final.herokuapp.com/api" : "http://localhost:2020/api"; export default API_URL;