Files
vigilcare-clinical/vigilcare-dashboard/index.html
T

23 lines
597 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>VigilCare Clinical</title>
<script>
;(function () {
try {
if (localStorage.getItem('darkMode') === 'true') {
document.documentElement.classList.add('dark')
}
} catch (_) {}
})()
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>