mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
The existing 16x16 pixel favicon looks a bit pixelated. This adds an SVG favicon option based on the existing SVG logo file but cropped tighter similar to the existing favicon. That makes it nice and crisp.
18 lines
545 B
HTML
18 lines
545 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
<link rel="manifest" href="manifest.json" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta name="referrer" content="no-referrer" />
|
|
|
|
<title>CommaFeed</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|