17 lines
522 B
JavaScript
Executable file
17 lines
522 B
JavaScript
Executable file
/*! @azure/msal-browser v4.19.0 2025-08-05 */
|
|
'use strict';
|
|
import { AuthorizationCodeClient } from '@azure/msal-common/browser';
|
|
|
|
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
class HybridSpaAuthorizationCodeClient extends AuthorizationCodeClient {
|
|
constructor(config) {
|
|
super(config);
|
|
this.includeRedirectUri = false;
|
|
}
|
|
}
|
|
|
|
export { HybridSpaAuthorizationCodeClient };
|
|
//# sourceMappingURL=HybridSpaAuthorizationCodeClient.mjs.map
|