Skip to content

Commit

Permalink
feature: cloudcmd: Add support for Progressive Web App (#426)
Browse files Browse the repository at this point in the history
* Add support for Progressive Web App

* Add resized favicon 256x256
  • Loading branch information
hagaygo authored Nov 13, 2024
1 parent f2ef160 commit 71dc8dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Binary file added img/favicon/favicon-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions static/manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 71dc8dd

Please sign in to comment.