Files
chore/frontend/vue-app/index.html
Ryan Kegel 1a8181b8e5
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 3m7s
chore: update favicon.ico for improved branding
2026-04-23 16:56:09 -04:00

27 lines
736 B
HTML

<!doctype html>
<html lang="">
<head>
<meta charset="UTF-8" />
<link rel="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"
/>
<title>Chorly</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/sw.js').catch(function (err) {
console.warn('Service Worker registration failed:', err)
})
})
}
</script>
</body>
</html>