Files
tools-app/index.html
Grzegorz Kucmierz 8655533a2d
All checks were successful
Deploy to Production / deploy (push) Successful in 12s
feat(pwa): add PWA support with auto-update and install prompt
2026-02-26 23:46:17 +00:00

16 lines
465 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<meta name="theme-color" content="#242424" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tools App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>