29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!doctype html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<meta name="theme-color" content="#12805c" />
|
||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
||
<meta
|
||
name="description"
|
||
content="Демо-панель управления доставкой и заказами с офлайн-доступом после первого запуска."
|
||
/>
|
||
<link rel="icon" type="image/svg+xml" href="/icons/icon-192.svg" />
|
||
<link rel="manifest" href="/manifest.webmanifest" />
|
||
<title>Construction Delivery Control</title>
|
||
<script>
|
||
if (location.hostname === 'localhost' || location.hostname === '127.0.0.1') {
|
||
navigator.serviceWorker?.getRegistrations?.().then(function (regs) {
|
||
regs.forEach(function (r) { r.unregister(); });
|
||
});
|
||
}
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id="root"></div>
|
||
<script type="module" src="/src/main.jsx"></script>
|
||
</body>
|
||
</html>
|