We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94b01bf commit dc68370Copy full SHA for dc68370
src/components/BaseHead.astro
@@ -49,8 +49,17 @@ function formatCanonicalURL(url: string | URL) {
49
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
50
<link
51
href="https://fonts.googleapis.com/css2?family=Inter:wght@400..700&display=swap"
52
- rel="stylesheet"
+ rel="preload"
53
+ as="style"
54
+ onload=`this.onload=null;this.rel='stylesheet'`
55
/>
56
+<noscript>
57
+ <link
58
+ href="https://fonts.googleapis.com/css2?family=Inter:wght@400..700&display=swap"
59
+ rel="stylesheet"
60
+ type="text/css"
61
+ />
62
+</noscript>
63
64
<!-- Low Priority Global Metadata -->
65
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
0 commit comments