I have a blazor server project. I would like to know A) how the shared layout folder works B) now css files and js files are shared across pages. I can see in my project the shared layout but what I want to kow specifically is how is Blazor able to pick up shared resources.
I cannot see any reference calling them in my razor pages.
Please help? I am a bit lost
There is nothing special about that folder.
The connections are:
@using AppName.Layout
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />