WIP: Add source #3

Draft
cswimr wants to merge 25 commits from cswimr/add-src into main
Showing only changes of commit dd614b62b1 - Show all commits

View file

@ -3,8 +3,7 @@ using ZenithInfo.Components;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorComponents()
.AddInteractiveServerComponents();
builder.Services.AddRazorComponents().AddInteractiveServerComponents();
var app = builder.Build();
@ -21,7 +20,6 @@ app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode();
app.MapRazorComponents<App>().AddInteractiveServerRenderMode();
app.Run();