fix: crossorigin didn't have specifier

According to MDN (and my LSP), `crossorigin` needs to have a specifier.
Since we don't want to send credentials, we use the `anonymous`
specifier

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link#crossorigin
This commit is contained in:
Roman Godmaire 2023-12-07 22:26:03 -05:00
parent fe7b8bbed1
commit 8937e6580b

View file

@ -8,7 +8,7 @@
<title>Is It Glue?</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet" />
</svelte:head>