forked from dydxprotocol/v4-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
39 lines (39 loc) · 1.44 KB
/
template.html
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
<!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" />
<meta name="color-scheme" content="dark light" />
<title>dYdX</title>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@dYdX" />
<meta name="twitter:creator" content="@dYdX" />
<meta property="og:url" content="%VITE_BASE_URL%" />
<meta property="og:type" content="website" />
<meta property="og:image" content="%VITE_BASE_URL%/og-image.png" />
<meta property="og:image:alt" content="dYdX" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="2400" />
<meta property="og:image:height" content="1260" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="dYdX" />
<script>
if (typeof globalThis === 'undefined') {
(function () {
if (typeof self !== 'undefined') {
self.globalThis = self;
} else if (typeof window !== 'undefined') {
window.globalThis = window;
} else if (typeof global !== 'undefined') {
global.globalThis = global;
}
})();
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>