From 06fad854d2e60ba040c7b423b8622b066b6cb14a Mon Sep 17 00:00:00 2001 From: Straw-Etiam Date: Sat, 16 Jan 2021 21:50:27 +0100 Subject: [PATCH] :adhesive_bandage: simple fix - add backend url in config.js --- 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..f2be9b5 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://warm-fortress-97103.herokuapp.com/"; export default API_URL;