I have a .Net Maui Blazor hybrid and web app solution, with the four mobile, web, shared and client projects.Most of the application is in the shared project and the mobile and web projects display them within their respective wrappers.I need to set specific starting conditions, depending on the environment.In the web project I have the following component
@page "/"<MyAwesomeComponent @rendermode="RenderMode.InteractiveWebAssembly"/>
Which then displays MyAwesomeComponent from the shared project.If I add a similar component to the mobile project, it can't be found and if I create a mobile folder in the shared project and include the starting component the application errors with a multiple "/" starting point confliction.Can this be done?