This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Set up the ADAL instance, we will use the throughout the app | |
| export var adalInstance = new AuthenticationContext({ | |
| instance: 'https://login.microsoftonline.com/', | |
| // The client ID of the app from the Azure Portal | |
| clientId: 'aabbccee-aabb-1122-3344-556677889900', | |
| // Where do we want to go after logging out | |
| postLogoutRedirectUri: window.location.origin, | |