Skip to content
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.

Commit

Permalink
Add web app manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
cceckman committed Aug 30, 2021
1 parent 24d82b2 commit ac63aa0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
@@ -1,7 +1,7 @@
<html>
<head>
<title>Reading List Admin</title>
<link rel="manifest" href="/manifest.json">
<link rel="manifest" href="manifest.json">
</head>
<body>
<p>Some content would be nice.</p>
Expand Down
18 changes: 18 additions & 0 deletions manifest.json
@@ -0,0 +1,18 @@
{
"name": "Reading List",
"display": "standalone",
"scope": "/reading/admin",
"start_url": "",
"icons": [
{
"src": "icon-192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "icon-512.png",
"type": "image/png",
"sizes": "512x512"
}
]
}

0 comments on commit ac63aa0

Please sign in to comment.