A base class implementation of the configuration your Blazor app will pull from wwwroot/appsettings.json.
Provides standard HttpClient configuration for API and application endpoints.
public HttpHandlerMode HttpHandlerMode { get; set; }
Determines how HttpClient message handlers are configured when registering HTTP clients.
Controls whether handlers are added to existing handlers or replace them entirely.
This configuration class is typically used for customer-facing applications that need to communicate
with external APIs and handle application-level HTTP requests. For administrative applications,
consider using instead.