Fix favicon/CSS 404s; heartbeat 25s→10s already staged
- index.html: remove broken /index.css link (file never existed, noisy 404) - index.html: fix favicon path to use %BASE_URL% so Vite rewrites it correctly for /modcomms/ subpath deployment - public/favicon.svg: add minimal M favicon (was completely missing) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
57cd8c5613
commit
e98143de55
2 changed files with 5 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" type="image/svg+xml" href="%BASE_URL%favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Mod Comms - Intelligent Review</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
|
|
@ -82,7 +82,6 @@
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<link rel="stylesheet" href="/index.css">
|
||||
</head>
|
||||
<body class="bg-white">
|
||||
<div id="root"></div>
|
||||
|
|
|
|||
4
frontend/public/favicon.svg
Normal file
4
frontend/public/favicon.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
||||
<rect width="32" height="32" rx="6" fill="#0487B6"/>
|
||||
<text x="16" y="22" font-family="Arial,sans-serif" font-size="18" font-weight="bold" fill="white" text-anchor="middle">M</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 265 B |
Loading…
Add table
Reference in a new issue