Files
Cleanuparr/code/frontend/src/index.html
2026-02-12 17:51:30 +02:00

37 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Cleanuparr</title>
<script>
(function() {
let basePath = '/';
if (window['_server_base_path']) {
basePath = window['_server_base_path'];
}
window['_app_base'] = basePath;
const baseTag = document.createElement('base');
baseTag.href = basePath === '/' ? '/' : basePath + '/';
document.head.appendChild(baseTag);
})();
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="icons/128.png">
<link rel="manifest" href="manifest.webmanifest">
<meta name="theme-color" content="#1a1135">
<!-- iOS support -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Cleanuparr">
<link rel="apple-touch-icon" href="icons/128.png">
</head>
<body>
<app-root></app-root>
<noscript>Please enable JavaScript to continue using this application.</noscript>
</body>
</html>