Skip to content

Commit 71dc8dd

Browse files
authored
feature: cloudcmd: Add support for Progressive Web App (#426)
* Add support for Progressive Web App * Add resized favicon 256x256
1 parent f2ef160 commit 71dc8dd

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

html/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<link rel="icon" href="{{ prefix }}/favicon.ico">
1010

1111
<link rel=stylesheet href="{{ prefix }}/dist/cloudcmd.css">
12+
<link rel="manifest" href="{{ prefix }}/static/manifest.json">
1213
<noscript>
1314
<link rel=stylesheet href="{{ prefix }}/dist/nojs.css">
1415
</noscript>

img/favicon/favicon-256.png

13.9 KB
Loading

static/manifest.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"short_name": "CloudCMD",
3+
"name": "Cloud Commander",
4+
"display": "standalone",
5+
"start_url": "..",
6+
"icons": [
7+
{
8+
"src": "../img/favicon/favicon-256.png",
9+
"type": "image/png",
10+
"sizes": "256x256"
11+
}
12+
]
13+
}
14+

0 commit comments

Comments
 (0)