I want to use my customs CSS located on the wwwroot/css/. in my BlazorControllers/Components/. files but nothing is loaded at execution.
Is there something to specify in the client or in the lib project settings ?
My Library project is BlazorControllers and I use the component of the library in the Client project

<link rel="stylesheet" href="~/css/MyComponents.css" />in your main page (e.g._Host.cshtml) ? 2. Is thatBlazorControllersproject a Razor Class Library?~/css/MyComponents.cssbut worked well with_content/BlazorControllers/css/MyComponents.csspath. I don't know what's the difference between both._contentis a pseudofolder configured to get the files from somewhere (by the StaticFiles middleware). Compare with_frameworkfor the main js file at the bottom of Index.html .