-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 1.05 KB
/
index.html
File metadata and controls
29 lines (26 loc) · 1.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="google" value="notranslate">
<link rel="shortcut icon" href="/favicon.ico">
<title>OSMCha</title>
<meta property="og:site_name" content="OSMCha">
<meta property="og:title" content="OSMCha">
<meta property="og:description" content="Validation tool for OpenStreetMap">
<meta name="keywords" content="OpenStreetMap, OSM, validation, changeset, open data, quality assurance">
<link rel="preload" href="/env.json" as="fetch" type="application/json" />
<link href="https://api.mapbox.com/mapbox-assembly/v0.21.0/assembly.min.css" rel="stylesheet">
<script async defer src="https://api.mapbox.com/mapbox-assembly/v0.21.0/assembly.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module">
fetch("/env.json")
.then(res => res.json())
.then(env => { window.env = env; })
.then(() => import("/src/index.tsx"));
</script>
</body>
</html>