-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (52 loc) · 2.16 KB
/
index.html
File metadata and controls
59 lines (52 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shelf Label & Inventory App</title>
<!-- PWA Meta Tags -->
<meta name="description" content="Professional shelf label printing and inventory management system" />
<meta name="theme-color" content="#3b82f6" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Shelf Labels" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json" />
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="/icons/icon-152x152.svg" />
<link rel="apple-touch-icon" sizes="152x152" href="/icons/icon-152x152.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/icons/icon-180x180.svg" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" sizes="32x32" href="/icons/icon-32x32.svg" />
<link rel="icon" type="image/svg+xml" sizes="16x16" href="/icons/icon-16x16.svg" />
<!-- Tailwind CSS will be included via Vite build -->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- Vite Client Configuration for Network Access -->
<script>
window.__VITE_HMR_PROTOCOL__ = 'wss';
window.__VITE_HMR_HOSTNAME__ = '192.168.31.57';
window.__VITE_HMR_PORT__ = 3000;
</script>
<!-- Service Worker Registration (DISABLED FOR DEBUGGING) -->
<!--
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/service-worker.js')
.then((registration) => {
console.log('SW registered: ', registration);
})
.catch((registrationError) => {
console.log('SW registration failed: ', registrationError);
});
});
}
</script>
-->
</body>
</html>