The favicon was trying to load from /assets/images/app-icon.svg which doesn't exist in the build output (Vite only copies public folder). Copied app-icon.svg to public/icons/ and updated index.html reference. This fixes the 404 error and container health check. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="icon" type="image/svg+xml" href="/icons/app-icon.svg">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<title>IndeedHub - Decentralized Media Streaming</title>
|
|
<meta name="description" content="Stream films and content on the decentralized web powered by Nostr and Bitcoin">
|
|
|
|
<!-- PWA Meta Tags -->
|
|
<meta name="theme-color" content="#0a0a0a">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
|
<meta name="apple-mobile-web-app-title" content="IndeedHub">
|
|
<meta name="application-name" content="IndeedHub">
|
|
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
|
|
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|