mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-22 18:29:26 +00:00
feature: cloudcmd: Add support for Progressive Web App (#426)
* Add support for Progressive Web App * Add resized favicon 256x256
This commit is contained in:
parent
f2ef160ca8
commit
71dc8dd6be
3 changed files with 15 additions and 0 deletions
|
|
@ -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
BIN
img/favicon/favicon-256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
14
static/manifest.json
Normal file
14
static/manifest.json
Normal 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"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue