I am working on a WASM application, and I am now specifically working on the loading page, i.e this part in index.html:
<body><div class="dark loading-section" id="app"><div class="loading-content"></div></div><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.webview.js" autostart="false"></script></body>Now for debug purposes, I would like to see what is going on exactly here on loading, but without having to re-launch the app. I know I could copy paste the code on my home page but if possible I would like to simply delay the loading and work on this section.
-> Is there a way to manually delay the loading time in a blazor app ?