Skip to content

Commit 40fb587

Browse files
committed
add minfest for pwa
1 parent 5b3903e commit 40fb587

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

ui/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949

5050
<!-- To establish an early connection to the Google Analytics domain -->
5151
<link rel="preconnect" href="https://www.google-analytics.com" />
52+
53+
<link rel="manifest" href="/manifest.json" />
5254
</head>
5355
<body>
5456
<div id="root"></div>

ui/public/icon-128.png

2.38 KB
Loading

ui/public/icon-256.png

4.36 KB
Loading

ui/public/manifest.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "BinaryTree",
3+
"short_name": "BinaryTree",
4+
"description": "binarytree.dev: Developer Productivity Tools",
5+
"icons": [
6+
{
7+
"src": "logo.svg",
8+
"type": "image/svg+xml",
9+
"sizes": "512x512"
10+
},
11+
{
12+
"src": "maskable_icon_x192.png",
13+
"sizes": "192x192",
14+
"type": "image/png",
15+
"purpose": "any maskable"
16+
},
17+
{
18+
"src": "icon-256.png",
19+
"sizes": "256x256"
20+
},
21+
{
22+
"src": "icon-128.png",
23+
"sizes": "128x128"
24+
}
25+
],
26+
"background_color": "#141414",
27+
"theme_color": "#141414"
28+
}

ui/public/maskable_icon_x192.png

3.3 KB
Loading

0 commit comments

Comments
 (0)