etsy-finance-tracker/client/index.html
dlawler489 2f1dff6273
All checks were successful
Build and Push Docker Images / build-and-push (push) Successful in 20s
Add app favicon (orange bar-chart) and fix favicon 404
Replace the missing /vite.svg reference with a bundled SVG favicon and
set the document title to 'Etsy Finance Tracker'.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-20 08:28:12 +10:00

13 lines
No EOL
371 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Etsy Finance Tracker</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>