Which class should be used to test the fallback of the fontawesome css stylesheet in ASP.net Core 2.2 Tag helper?
I've implemented this, but when I check using F12 Developer Options Network in Chrome, it shows that both the cdnjs and local library are being downloaded.
<!--font awesome css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"
integrity="sha256-zmfNZmXoNWBMemUOo1XUGFfc0ihGGLYdgtJS3KCr/l0=" crossorigin="anonymous"
asp-fallback-href="~/lib/font-awesome/css/all.min.css" asp-append-version="true"
asp-fallback-test-class="fas" asp-fallback-test-property="font-family" asp-fallback-test-value="Font Awesome 5 Free" />
I have experimented with classes fa, far, and fas with respective font-family values: Font Awesome 5 Free and FontAwesome.
I am using version Font Awesome Free 5.10.2. Since I only need far and fas (regular and solid), should I use all.min.css?