-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DevTools</title>
<!-- react-draggable (inside react-grid-layout/legacy) reads process.env.DRAGGABLE_DEBUG at
drag start; Vite only replaces the NODE_ENV dot-form, so bare `process` must exist. -->
<script>window.process = window.process || { env: {} };</script>
<!-- Google Analytics (GA4) — skipped on localhost so dev sessions don't pollute the data -->
<script>
if (location.hostname !== 'localhost' && location.hostname !== '127.0.0.1') {
const s = document.createElement('script');
s.async = true;
s.src = 'https://www.googletagmanager.com/gtag/js?id=G-VZLY1YN812';
document.head.appendChild(s);
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
window.gtag = gtag;
gtag('js', new Date());
gtag('config', 'G-VZLY1YN812');
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>