Usage
You can find default setting overrides of some MudBlazor features in the static
class. These defaults should be set when your application initializes, such as when adding MudBlazor services. If they are set after the app has started, they may not take effect until the next page load, or may not take effect at all.Exception Handler
You can handle MudBlazor component exceptions using MudGlobal.UnhandledExceptionHandler
.
// Add MudBlazor services Services.AddMudServices(); // Send all exceptions to the console MudGlobal.UnhandledExceptionHandler = (exception) => Console.WriteLine(exception);