2023-08-01 13:26:01 +02:00
|
|
|
<!doctype html>
|
2021-01-09 18:26:46 +01:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-03-06 05:16:31 +01:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="icon" href="/images/favicon.ico" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2021-01-09 18:26:46 +01:00
|
|
|
<title>Frigate</title>
|
2023-12-16 17:20:59 +01:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="180x180"
|
|
|
|
href="/images/apple-touch-icon.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
|
|
|
href="/images/favicon-32x32.png"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
|
|
|
href="/images/favicon-16x16.png"
|
|
|
|
/>
|
2023-07-01 14:47:16 +02:00
|
|
|
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
|
2024-03-14 13:36:56 +01:00
|
|
|
<link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials" />
|
2023-05-05 01:04:24 +02:00
|
|
|
<link rel="mask-icon" href="/images/favicon.svg" color="#3b82f7" />
|
2024-03-13 02:58:29 +01:00
|
|
|
<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 18:26:46 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2023-12-16 17:20:59 +01:00
|
|
|
<div id="root"></div>
|
2024-03-13 02:58:29 +01:00
|
|
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
2022-03-06 05:16:31 +01:00
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2021-01-09 18:26:46 +01:00
|
|
|
</body>
|
|
|
|
</html>
|