-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 1.9 KB
/
index.html
File metadata and controls
51 lines (49 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="./icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TabSplit</title>
<!-- PWA Meta Tags -->
<link rel="manifest" href="./manifest.json" />
<meta name="theme-color" content="#4f46e5" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="TabSplit" />
<link rel="apple-touch-icon" href="./icon.svg" />
<script src="https://cdn.tailwindcss.com"></script>
<script type="importmap">
{
"imports": {
"react": "https://aistudiocdn.com/react@^19.2.0",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.27.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="./index.tsx"></script>
<script>
// NOTE: This is the development/source index.html. Do NOT register the
// service worker here because it can cache dev/source files (like
// index.tsx) and cause GitHub Pages users to get a broken/white page.
// Service worker registration is performed from the production build
// (dist/docs). If you need to enable it here, uncomment the block below.
/*
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/TabSplit-V1/sw.js').then(registration => {
console.log('ServiceWorker registered: ', registration);
}).catch(registrationError => {
console.log('ServiceWorker registration failed: ', registrationError);
});
});
}
*/
</script>
</body>
</html>