When a Blazor WebAssembly application loads, it first downloads blazor.webassembly.js and all the .NET assemblies of the application. Until everything is loaded, it displays a loading message. We can easily change this message in the wwwroot/index.html
<body>
<!-- ?? Here -->
<app>Loading...</app>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">??</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
But also, if we secure ou application with authentication (CascadingAuthenticationState
, AuthorizeRouteView
, ...), we also see 'Authorizing...' in the top left corner.
My question is: how this message can be customized ? I didn't see anything about that.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…