feat: favicon
Lint / Oxlint (push) Successful in 41s
Lint / TypeScript (push) Successful in 46s
Lint / ESLint (push) Successful in 49s
Deploy / Build (push) Successful in 59s
Deploy / Deploy to Stapler (push) Successful in 3m46s

This commit is contained in:
2026-06-25 14:46:23 +02:00
parent a0cccd1453
commit f558c9cf44
5 changed files with 7 additions and 2 deletions
+4
View File
@@ -11,6 +11,10 @@
<meta property="og:title" content="🥦 Légume" /> <meta property="og:title" content="🥦 Légume" />
<meta property="og:description" content="🧅 VJ Table Generator 🥕" /> <meta property="og:description" content="🧅 VJ Table Generator 🥕" />
<meta property="org:url" content="https://legume.klemek.fr" /> <meta property="org:url" content="https://legume.klemek.fr" />
<meta property="og:image" content="https://legume.klemek.fr/favicon-96x96.png">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<script <script
defer defer
src="https://tics.klemek.fr/script.js" src="https://tics.klemek.fr/script.js"
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 67 KiB

+2 -2
View File
@@ -72,11 +72,11 @@ onMounted(() => {
setTimeout(() => { setTimeout(() => {
visible.value = true; visible.value = true;
}); });
document.title = `${vegetable.value} Légume`; document.title = `Légume ${vegetable.value}`;
}); });
watch(vegetable, () => { watch(vegetable, () => {
document.title = `${vegetable.value} Légume`; document.title = `Légume ${vegetable.value}`;
}); });
onUpdated(updateIcons); onUpdated(updateIcons);