eBooks
eBooks copied to clipboard
Blazor WASM - App startuo
Command dotnet new blazorwasm –hosted and Blazor WASM in VisualStudio template with checked ‘ASP.NET Core hosted’ creates 3 projects in the solution: 1. *.Client 2. *.Server, 3. *.Shared Project *.Server is is standard ASP.NET Core application (not Blazor). This project supplies data for Blazor WASM (project *.Client). Jon Hilton explained how to prepare *.Server project for prerendering. Browser displays the first page much faster using this technology. Read details on site https://jonhilton.net/blazor-wasm-prerendering/.