-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
31 lines (28 loc) · 824 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
29
30
31
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Agile Poker</title>
<link rel="manifest" href="/manifest.json">
<link rel="icon" href="/favicon.ico">
<meta name="theme-color" content="#360643">
<meta name="google-site-verification" content="JN-n_jqXa-yd-js59chzUenJ85IEZ85WFrpqLg5t9C0" />
</head>
<body>
<div id="app"></div>
<noscript>
<p>Please enable JavaScript on your browser</p>
</noscript>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js')
.then(function () {
console.log('service worker registered');
})
.catch(function () {
console.warn('service worker failed');
});
}
</script>
</html>