cursor-mover-app/crates/cursor-mover-webapp/index.html

23 lines
682 B
HTML
Raw Permalink Normal View History

2026-03-03 21:38:18 +01:00
<!doctype html>
<html>
<head>
<title>{app_title}</title>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/{base_path}/assets/sw.js");
}
</script>
<link rel="manifest" href="/assets/manifest.json" />
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta
http-equiv="Content-Security-Policy"
content="worker-src 'self'"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
</head>
<body>
<div id="main"></div>
</body>
</html>