Skip to content

Commit

Permalink
fix: Don't preload style sheets
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldToothRichards committed Oct 18, 2024
1 parent b4ce346 commit 2712122
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/layouts/FontAwesome.astro
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
<!-- This is the full fontawesome stylesheet.-->
<!-- <link href="/fontawesome/css/all.min.css" rel="stylesheet" /> -->

<link href="/fontawesome/css/fontawesome.bareminimum.css" rel="preload" as="style" />
<link href="/fontawesome/css/brands.bareminimum.css" rel="preload" as="style" />
<link href="/fontawesome/css/fontawesome.bareminimum.css" rel="stylesheet" />
<link href="/fontawesome/css/brands.bareminimum.css" rel="stylesheet" />

<!--
There's no leaner version for solid.min.css because it's already lean.
-->
<link href="/fontawesome/css/solid.min.css" rel="preload" as="style" />
<link href="/fontawesome/css/solid.min.css" rel="stylesheet" />
</Fragment>

0 comments on commit 2712122

Please sign in to comment.