I was using font-awesome brand logos for social links using the social media component. I removed this but the link to the font-awesome css remains in the head.
I am sure I don’t use font-awesome icons anywhere else, and when I run Lighthouse report, font-awesome-6.min.css shows up under the ‘Reduce unused CSS’ tab in Lighthouse and it is also causing the largest delay in render blocking resources.
I have two questions:
- How can I be 100% sure the font-awesome icons are not being used
- I am pretty sure they are not, so how can I remove the link tag to font-awesome and prevent it being downloaded with my site?
I tried using the asset loading optimisation technique explained here: Asset Loading Optimization – Bricks Academy and selecting external files, but this generated a lot of files, I am not sure why, but I write a lot of css in the code editor for components so was wondering if it is generating a file for all the pages I have written CSS on, and ultimately slowed the page even more.
Thanks