-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
28 lines (28 loc) · 829 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OSM Address Editor</title>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/favicon.svg" />
<link
rel="prefetch"
as="fetch"
crossorigin="anonymous"
href="https://raw.githubusercontent.com/nvkelso/natural-earth-vector/master/geojson/ne_10m_admin_0_countries.geojson"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
if (window.opener) {
window.opener.authComplete(location.href);
}
</script>
<script
type="text/javascript"
src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>