From 9d3cd5190db8dad80b1516dd7d8d96af70f50988 Mon Sep 17 00:00:00 2001 From: Huan Nguyen Date: Thu, 28 Mar 2024 11:43:47 +0700 Subject: [PATCH] update base url config --- config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.js b/config.js index b92eec31c..37aab9ab2 100755 --- a/config.js +++ b/config.js @@ -5,7 +5,7 @@ function isProduction() { // Start Front End function getBaseUrl() { if (isProduction()) { - return "https://remi-frontend-ruae.onrender.com" + return "https://remitano-remi-fe.onrender.com/" } return "http://localhost:3000" } @@ -14,7 +14,7 @@ function getBaseUrl() { // Start backend function getApiBaseUrl() { if (isProduction()) { - return "https://remitano-backend.onrender.com" + return "https://remitano-backend-api.onrender.com" } return "http://localhost:3001" }