diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-08-24 22:08:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-24 22:08:37 +0300 |
commit | 6a9970e0994b3b9230a5ead21f0a2dd96c81c40c (patch) | |
tree | e30b5f131ac652a5783983aa576a7a27b24a8440 /public/index.html | |
parent | 89f038c7a0ccf6de94516cba8499a0bc69f8dae1 (diff) | |
parent | 18f71aff2c4161792aa2857d0e1b18cf402e55f6 (diff) | |
download | which-ui-6a9970e0994b3b9230a5ead21f0a2dd96c81c40c.tar.gz |
Merge pull request #94 from which-ecosystem/pwa
Configure PWA
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/public/index.html b/public/index.html index 090b0d5..c921a87 100644 --- a/public/index.html +++ b/public/index.html @@ -2,8 +2,12 @@ <html lang="en"> <head> <meta charset="utf-8" /> - <link rel="icon" type="image/png" sizes="16x16" href="./which-logo-64.png" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="theme-color" content="#00796b" /> + <meta name="description" content="Social webapp based on choosing between two options." /> + <link rel="icon" type="image/png" href="./which-logo-64.png" /> + <link rel="apple-touch-icon" href="./which-logo-144.png" /> + <link rel="manifest" href="./manifest.json" /> <title>Which</title> <!-- Start Single Page Apps for GitHub Pages --> <script type="text/javascript"> @@ -40,5 +44,12 @@ <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="root"></div> + <script> + if ('serviceWorker' in navigator) { + window.addEventListener('load', () => { + navigator.serviceWorker.register('./service-worker.js') + }) + } + </script> </body> </html> |