1
0

Add missing mapping to identity endpoints.

(Logout did not work for example)
This commit is contained in:
Kevin Matsubara 2025-04-18 11:50:18 +02:00
parent b365dd342d
commit 3e5d94e26f

View File

@ -85,4 +85,7 @@ app.UseAntiforgery();
app.MapRazorComponents<App>() app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode(); // Provides server interactivity. .AddInteractiveServerRenderMode(); // Provides server interactivity.
// Add additional endpoints required by the Identity /Account Razor components.
app.MapAdditionalIdentityEndpoints();
app.Run(); app.Run();