From 474dacfd62bf81f1da174139df5f4ecd9e41c592 Mon Sep 17 00:00:00 2001 From: prasadhonrao Date: Fri, 25 Oct 2024 22:56:50 +0100 Subject: [PATCH] Add logging of environment variable in App.js --- src/webapp/src/App.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/webapp/src/App.js b/src/webapp/src/App.js index 2023056..915e50f 100644 --- a/src/webapp/src/App.js +++ b/src/webapp/src/App.js @@ -19,6 +19,9 @@ import { AuthProvider } from './contexts/AuthContext'; import Layout from './components/Layout'; function App() { + // Log environment variables + console.log('REACT_APP_DEVCAMPER_BASE_API_URI:', process.env.REACT_APP_DEVCAMPER_BASE_API_URI); + return (