Adding PWA Support - Step 1

This commit is contained in:
Stefano Haagman 2022-04-08 16:30:51 +02:00
parent 03c499bca3
commit 5cb8001fdf
5 changed files with 32 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

32
web/manifest.json Normal file
View file

@ -0,0 +1,32 @@
{
"theme_color": "#f69435",
"background_color": "#f69435",
"display": "minimal-ui",
"scope": "/",
"start_url": "https://place-atlas.stefanocoding.me/",
"name": "r/place atlas",
"short_name": "r/placeAtlas2",
"description": "The atlas for the r/place event from 2022",
"icons": [
{
"src": "_img/pwa/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "_img/pwa/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "_img/pwa/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "_img/pwa/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}