From 049a7f7a456b8ff6cb44de8545875450f22b1902 Mon Sep 17 00:00:00 2001 From: Llewellyn D'souza Date: Thu, 6 Jan 2022 11:30:59 +0530 Subject: [PATCH] Added: urls constants --- src/constants/urls.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/constants/urls.js diff --git a/src/constants/urls.js b/src/constants/urls.js new file mode 100644 index 0000000..48e68a9 --- /dev/null +++ b/src/constants/urls.js @@ -0,0 +1,6 @@ +const urls = { + baseURL: process.env.REACT_APP_API_URL || "http://dummy:port/", + auth: 'auth', +}; + +export default urls;