Skip to content

Commit

Permalink
Set fonts to prefetch instead of preload.
Browse files Browse the repository at this point in the history
Fixes #86
  • Loading branch information
lgarron committed Sep 15, 2024
1 parent 7c5f319 commit ce4ffc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/timer.cubing.net/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<meta property="og:image" content="https://timer.cubing.net/screenshot.png" />
<link rel="shortcut icon" id="favicon" href="./resources/favicons/favicon_blue.ico" />

<link rel="prefetch" href="./resources/vendor/fonts/digital-7/digital-7-mono.ttf" as="font" type="font/ttf"
<link rel="preload" href="./resources/vendor/fonts/digital-7/digital-7-mono.ttf" as="font" type="font/ttf"
crossorigin="anonymous" />
<link rel="prefetch" href="./resources/vendor/fonts/digital-7/digital-7.ttf" as="font" type="font/ttf"
<link rel="preload" href="./resources/vendor/fonts/digital-7/digital-7.ttf" as="font" type="font/ttf"
crossorigin="anonymous" />

<title>timer.cubing.net</title>
Expand Down

0 comments on commit ce4ffc2

Please sign in to comment.