Skip to content

Commit

Permalink
#258 PWA first version
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmasking committed Nov 4, 2024
1 parent 456a323 commit a083513
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/appicon.png" />
<link rel="icon" type="image/png" href="/assets/appicon32.png" />
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="manifest" href="/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Comify</title>
</head>
Expand Down
31 changes: 31 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "Comify",
"short_name": "Comify",

"icons": [

{
"src": "/assets/appicon32.png",
"type": "image/png",
"sizes": "32x32"
},

{
"src": "/assets/appicon192.png",
"type": "image/png",
"sizes": "192x192"
},

{
"src": "/assets/appicon512.png",
"type": "image/png",
"sizes": "512x512"
}

],

"id": "/",

"display": "standalone"

}
Binary file added src/assets/appicon192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added src/assets/appicon512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a083513

Please sign in to comment.