Skip to content

Commit ca91ee4

Browse files
committed
chore: added manifest.json
1 parent 05df44a commit ca91ee4

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

app.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<head {{ HEAD_ATTRS }}>
55
<title>Diff viewer</title>
66
<meta name="theme-color" content="#2563EB">
7+
<link rel="manifest" href="/manifest.json" />
78
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
89
<meta property="og:url" content="https://diffviewer.vercel.app/">
910
<meta name="og:image" property="og:image" content="https://diffviewer.vercel.app/brand-430x495.png">

static/manifest.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "Diff viewer",
3+
"short_name": "Diff viewer",
4+
"description": "Nikhil Mehta's personal website",
5+
"icons": [
6+
{
7+
"src": "/android-chrome-192x192.png",
8+
"sizes": "192x192",
9+
"type": "image/png"
10+
},
11+
{
12+
"src": "/android-chrome-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png"
15+
}
16+
],
17+
"start_url": "/",
18+
"url_handlers": [
19+
{
20+
"origin": "https://diffviewer.vercel.app/"
21+
}
22+
],
23+
"theme_color": "#2563EB",
24+
"background_color": "#2563EB",
25+
"display": "standalone"
26+
}

0 commit comments

Comments
 (0)