-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.5 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!--
Copyright (C) 2022 Nat Zimmermann
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OSM Address Collector</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="pwa/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="pwa/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="pwa/favicon-16x16.png"
/>
<link rel="manifest" href="pwa/site.webmanifest" />
<link rel="mask-icon" href="pwa/safari-pinned-tab.svg" color="#5bbad5" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<div id="root"></div>
<script src="src/main.tsx" type="module"></script>
</body>
</html>