I am trying out Blazor and i do not understand why when changing a component after refreshing the browser page it does not update ? Shouldn\'t the
Blazor
component
You should add or enable runtime compilation in razor pages,
Install-Package Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation -Version 3.1.6
After installing set the startup file as ,
services.AddMvc().AddRazorRuntimeCompilation();