Fix favicon 404 - move app-icon.svg to public folder
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>
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="icon" type="image/svg+xml" href="/assets/images/app-icon.svg">
|
||||
<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">
|
||||
|
||||
Reference in New Issue
Block a user