From c9c10514749f209a5b799e45d3b5020ca8231cdf Mon Sep 17 00:00:00 2001 From: Shreyas-Microsoft Date: Mon, 30 Mar 2026 11:05:09 +0530 Subject: [PATCH] Add redirect URLs environment variables for React app --- infra/main.bicep | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/infra/main.bicep b/infra/main.bicep index d79d5628..b5a33c2d 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -1155,6 +1155,14 @@ module containerAppFrontend 'br/public:avm/res/app/container-app:0.19.0' = { name: 'APP_ENV' value: 'prod' } + { + name: 'REACT_APP_MSAL_POST_REDIRECT_URL' + value: '/' + } + { + name: 'REACT_APP_MSAL_REDIRECT_URL' + value: '/' + } ] image: '${acrName}/cmsafrontend:${imageVersion}' name: 'cmsafrontend'