Rename manifest.json to thelounge.webmanifest

This makes express serve it with correct content-type of application/manifest+json

Refs:
- https://w3c.github.io/manifest/#media-type-registration
- https://webhint.io/docs/user-guide/hints/hint-manifest-file-extension/
This commit is contained in:
Pavel Djundik
2018-11-13 13:33:25 +02:00
parent eb522e9208
commit e033010841
5 changed files with 13 additions and 17 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"name": "The Lounge",
"short_name": "The Lounge",
"description": "Self-hosted web IRC client",
"start_url": ".",
"display": "standalone",
"theme_color": "#415363",
"background_color": "#415363",
"icons":
[
{
"src": "img/logo-grey-bg-120x120px.png",
"type": "image/png",
"sizes": "120x120"
},
{
"src": "img/logo-grey-bg-152x152px.png",
"type": "image/png",
"sizes": "152x152"
},
{
"src": "img/logo-grey-bg-167x167px.png",
"type": "image/png",
"sizes": "167x167"
},
{
"src": "img/logo-grey-bg-180x180px.png",
"type": "image/png",
"sizes": "180x180"
},
{
"src": "img/logo-grey-bg-192x192px.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "img/logo-grey-bg-512x512px.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "img/logo-grey-bg.svg",
"type": "image/svg+xml",
"sizes": "513x513"
}
]
}