-
Notifications
You must be signed in to change notification settings - Fork 0
Description
Would it be possible to manage authentication for the entire application within the admin project? Either in a simulated way or by using the WebApp project as the server?
The idea is that if the user is not authenticated at any point in the application, they would be redirected to the login page of the Admin project, which would be lighter and have minimal dependencies. The user would enter their credentials there and then be redirected to the Web project, where the heavier part of the application resides.
We are experiencing delays in Blazor initialization as the number of modules increases, and your solution structure with multiple Blazor WASM projects might be the answer to our issues. Since they are independent, we could centralize authentication in a lightweight, standalone project.
Do you think this would be viable?
Thank you very much, and great work!