Configuration: {
    auth: BrowserAuthOptions;
    cache?: CacheOptions;
    system?: BrowserSystemOptions;
    telemetry?: BrowserTelemetryOptions;
}

This object allows you to configure important elements of MSAL functionality and is passed into the constructor of PublicClientApplication

Type declaration

  • auth: BrowserAuthOptions

    This is where you configure auth elements like clientID, authority used for authenticating against the Microsoft Identity Platform

  • Optional cache?: CacheOptions

    This is where you configure cache location and whether to store cache in cookies

  • Optional system?: BrowserSystemOptions

    This is where you can configure the network client, logger, token renewal offset

  • Optional telemetry?: BrowserTelemetryOptions

    This is where you can configure telemetry data and options

Generated using TypeDoc