diff --git a/index.html b/index.html index 501fda6..aea2779 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,7 @@ <meta charset="UTF-8" /> <link rel="icon" type="image/png" href="/favicon.png" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <link rel="manifest" href="/manifest.json" /> <title>SIGit</title> </head> <body> diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..067e8a5 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "SIGit", + "name": "SIGit", + "icons": [ + { + "src": "favicon.png", + "sizes": "16x16 24x24 32x32 48x48 64x64 72x72 96x96 128x128 256x256 512x512", + "type": "image/png" + } + ], + "start_url": ".", + "display": "minimal-ui", + "theme_color": "#7d54a3", + "background_color": "#ffffff" +}