Blazor Pre-Rendering

When you navigate to a Single Page Application, there can be a delay as the code downloads. In Blazor WebAssembly, we can use server-side pre-rendering to speed up the process. Source code available at: Topics include: - The problem of delayed loading in SPAs - Creating an hosted Blazor WebAssembly application - Configuring for pre-rendering - Dependency injection into C# Blazor components - Accessing web service data during pre-rendering - Avoiding double loading of web service data
Back to Top