chore: replace hardcoded /vite.svg favicon link with a placeholder note

The absolute /vite.svg path breaks once the app is served from a base path,
and the file was never replaced with a real logo. Leave instructions for
restoring it with the %BASE_URL% placeholder instead.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-26 15:03:13 +02:00
co-authored by Claude Opus 5
parent a26608791f
commit 48802cf13c
+3 -1
View File
@@ -24,7 +24,9 @@
} }
})(); })();
</script> </script>
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> <!-- Favicon: drop the logo at public/favicon.svg and restore this line. Keep the
%BASE_URL% placeholder so it follows the deployed base path:
<link rel="icon" type="image/svg+xml" href="%BASE_URL%favicon.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ready2Blob</title> <title>Ready2Blob</title>
</head> </head>