mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-01-22 20:18:30 +03:00
19 lines
776 B
HTML
19 lines
776 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/images/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<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)" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|