-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.49 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.49 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="theme-color" content="#0f172a" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, viewport-fit=cover"
/>
<title>freshell</title>
</head>
<body class="h-full">
<script>
// Capture console.error calls and uncaught errors from the very first
// moment the page loads. Browser-use preflight checks query this array
// via `window.__consoleErrors` to abort early when the app is broken.
(function () {
var errors = (window.__consoleErrors = []);
var orig = console.error;
console.error = function () {
errors.push({
ts: Date.now(),
args: Array.prototype.slice.call(arguments).map(String),
});
return orig.apply(console, arguments);
};
window.addEventListener("error", function (e) {
errors.push({ ts: Date.now(), args: [e.message || "Unknown error"] });
});
})();
</script>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>