[Vuejs]-Does the vue 3 app with Azure AD authentication need configuration change while deploying as static web app in Azure Storage?

1๐Ÿ‘

โœ…

We need to check and configure few things while deploying Vue3 App.

I have taken references from the MSDOC.

  • Navigate to the Storage Account => select Static website under Data management,
    Enable the Static website.

enter image description here

  • Also configure the CORS rule.
    enter image description here

  • Make sure to add the Storage Account endpoint in the Redirect URI of the Registered App.

Does any impact in our implementation for AAD authentication? Is there any configuration change after deployment?

AFAIK, there will be no impact in the authentication after the deployment if the configurations are set correctly.

๐Ÿ‘คHarshitha

Leave a comment