frigate/web/index.html

19 lines
776 B
HTML
Raw Normal View History

<!doctype html>
2021-01-09 20:26:46 +03:00
<html lang="en">
<head>
2022-03-06 07:16:31 +03:00
<meta charset="UTF-8" />
2025-12-23 18:29:44 +03:00
<link rel="icon" type="image/png" href="/images/favicon.png" />
2022-03-06 07:16:31 +03:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2025-12-23 18:29:44 +03:00
<title>Dienst-NVR</title>
<link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials" />
<link rel="mask-icon" href="/images/branding/favicon.svg" color="#3b82f7" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
2021-01-09 20:26:46 +03:00
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
2022-03-06 07:16:31 +03:00
<script type="module" src="/src/main.tsx"></script>
2021-01-09 20:26:46 +03:00
</body>
</html>