You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have created a Blazor Web App project in auto render mode and added a nuget package Microsoft.AspNetCore.Authorization in version 8.0.10.
But when I added [Authorize] attribute to my page, I don't know why that it will automatically redirect to "/Account/Login" when the user is not authorized, even though there is no handler for this route. I would like the page to redirect to "/auth/signin" instead, what should I do?
My dotnet version is 8. I develop it in Visual Studio 2022.