[Vuejs]-How to disable Single sign-on (SSO) with MSAL.js?

0👍

While getting login, in order to disable SSO, I have used prompt option as login instead of select_account as below.

   await msalApp.loginPopup({
        scopes,
        prompt: 'login'
    });

Leave a comment