From 0cccdc6597538d66a244faf4b0251ce6a272c337 Mon Sep 17 00:00:00 2001 From: Youssef Touggani Date: Mon, 18 Jan 2021 10:34:16 +0100 Subject: [PATCH] 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 bc3dc53..c0f1c82 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://tobedefined.io/api" + ? "https://devops-tpfinal-back.herokuapp.com/api" : "http://localhost:2020/api"; export default API_URL;