-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="EOS Blox Starter Kit">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>My App</title>
<meta name="description" content="My App description">
<base href="/">
<script>
window.MyAppGlobals = { rootPath: '/' };
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('service-worker.js', {
scope: MyAppGlobals.rootPath
});
});
}
</script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script type="module" src="src/my-app.js"></script>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
border-collapse: collapse;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-seri;
color: #383d48;
font-size: 13px;
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-user-select: none;
}
</style>
</head>
<body>
<my-app></my-app>
</body>
</html>