Remove Blazor project setup, including authentication, routing, and default configurations.

This commit is contained in:
2026-07-15 11:56:00 -05:00
parent 13a65de066
commit 6f17b5918f
175 changed files with 8860 additions and 451 deletions
+11
View File
@@ -0,0 +1,11 @@
using Polycomm.Client;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddAuthorizationCore();
builder.Services.AddCascadingAuthenticationState();
builder.Services.AddSingleton<AuthenticationStateProvider, PersistentAuthenticationStateProvider>();
await builder.Build().RunAsync();