feature: cloudcmd: Add support for Progressive Web App (#426)

* Add support for Progressive Web App

* Add resized favicon 256x256
This commit is contained in:
Hagay Goshen 2024-11-13 23:11:13 +02:00 committed by GitHub
parent f2ef160ca8
commit 71dc8dd6be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 15 additions and 0 deletions

View file

@ -9,6 +9,7 @@
<link rel="icon" href="{{ prefix }}/favicon.ico">
<link rel=stylesheet href="{{ prefix }}/dist/cloudcmd.css">
<link rel="manifest" href="{{ prefix }}/static/manifest.json">
<noscript>
<link rel=stylesheet href="{{ prefix }}/dist/nojs.css">
</noscript>

BIN
img/favicon/favicon-256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

14
static/manifest.json Normal file
View file

@ -0,0 +1,14 @@
{
"short_name": "CloudCMD",
"name": "Cloud Commander",
"display": "standalone",
"start_url": "..",
"icons": [
{
"src": "../img/favicon/favicon-256.png",
"type": "image/png",
"sizes": "256x256"
}
]
}