-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 865 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (26 loc) · 865 Bytes
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
<!doctype html>
<html lang="en">
<head>
<base href="/" />
<meta charset="UTF-8" />
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap"
rel="stylesheet"
/>
<script src="env-config.js"></script>
<title><%- title %></title>
<link rel="shortcut icon" href="<%- favicon %>" type="image/svg" />
</head>
<body>
<!-- React app root element -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>