I have an ASP.NET Core 8 project using Razor pages. Now, I want to migrate the project to Blazor, one page at a time.
The process is to get a page, create the page using Blazor and create the component for this page. Then, run the application and the user has to navigate the website as usual. This is because I want to test every page step by step and publish the Blazor changes in production.
I read on GitHub that there are same issues in doing that. Do you have any guidelines or examples?