Usual process to import css / js files from a library to a main project is reference them with
<script src="_content/RazorLib1/hello.js"></script>
But there are some Blazor libraries like DevExpress.Blazor and this one that are able to inject their css / js files without explicit them on main project. What is required to do is call the functions services.AddMyLibrary() and/or services.UseMyLibrary()
How is it possible? I've looked inside Toolbelt.Blazor.LoadingBar library but I didn't find how he reached this behaviour.