From edd588e065737510dce59db52b6a005c668987b8 Mon Sep 17 00:00:00 2001 From: tchawou-daniel Date: Sat, 16 Jan 2021 22:05:17 +0100 Subject: [PATCH] :wrench: add the backend prod url --- 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..b519161 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" - : "http://localhost:2020/api"; + : "https://mysterious-anchorage-24698.herokuapp.com/"; export default API_URL;