Add PWA support #10

merged
opened by vielle.dev targeting main from vielle.dev/pdsls: pwa
+1
index.html
···
<meta property="og:url" content="https://pdsls.dev" />
<meta property="og:description" content="Browse the public data on atproto" />
<meta property="description" content="Browse the public data on atproto" />
+
<link rel="manifest" href="/manifest.json" />
<title>PDSls</title>
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
+22
public/manifest.json
···
+
{
+
"name": "PDSls",
+
"description": "",
+
"id": "dev.pdsls",
+
"start_url": "/",
+
"display": "standalone",
+
"background_color": "#1f1f1f",
+
"theme_color": "#1f1f1f",
+
"icons": [
+
{
+
"src": "/favicon.png",
+
"type": "image/png",
+
"sizes": "512x512"
+
},
+
{
+
"src": "/pwa-maskable.png",
+
"type": "image/png",
+
"sizes": "512x512",
+
"purpose": "maskable"
+
}
+
]
+
}
public/pwa-maskable.png

This is a binary file and will not be displayed.