From 28f4c277e9243449c6d46e33a5f5c17d56b0038c Mon Sep 17 00:00:00 2001 From: Gianni GIUDICE Date: Mon, 18 Jan 2021 10:28:17 +0100 Subject: [PATCH] :wrench: Modification du common/config.js pour ajouter le lien de l'api back --- 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..4b01b41 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://fast-castle-06397.herokuapp.com/api" : "http://localhost:2020/api"; export default API_URL;