From 0a39ca5186f5156b484e4e419006636f9a0d8182 Mon Sep 17 00:00:00 2001 From: Sumedh Date: Fri, 18 Oct 2024 06:01:05 +0000 Subject: [PATCH] gateway variable added --- src/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index ac98284..404e219 100644 --- a/src/main.js +++ b/src/main.js @@ -47,7 +47,8 @@ var auth = createAuth({ } }); -axios.defaults.baseURL = 'http://localhost:8081' //import.meta.env.VITE_BACKEND_URL;//'http://localhost:8081'// +axios.defaults.baseURL = import.meta.env.VITE_BACKEND_URL;//'http://localhost:8081' +console.log(import.meta.env.VITE_BACKEND_URL); const app = createApp(App);