Skip to content

Commit 0e77f7e

Browse files
committed
feat(pwa): added manifest.json file to the demo app
1 parent 6a9650b commit 0e77f7e

File tree

10 files changed

+53
-1
lines changed

10 files changed

+53
-1
lines changed
7.83 KB
Loading
8.85 KB
Loading
9.34 KB
Loading
12 KB
Loading
26 KB
Loading
36.6 KB
Loading
4.36 KB
Loading
5.92 KB
Loading

demo/src/assets/manifest.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "@angular-material-extensions/password-strength",
3+
"short_name": "material-password-strength",
4+
"theme_color": "#0f9340",
5+
"background_color": "#3756da",
6+
"display": "browser",
7+
"Scope": "/",
8+
"start_url": "/",
9+
"icons": [
10+
{
11+
"src": "images/icons/icon-72x72.png",
12+
"sizes": "72x72",
13+
"type": "image/png"
14+
},
15+
{
16+
"src": "images/icons/icon-96x96.png",
17+
"sizes": "96x96",
18+
"type": "image/png"
19+
},
20+
{
21+
"src": "images/icons/icon-128x128.png",
22+
"sizes": "128x128",
23+
"type": "image/png"
24+
},
25+
{
26+
"src": "images/icons/icon-144x144.png",
27+
"sizes": "144x144",
28+
"type": "image/png"
29+
},
30+
{
31+
"src": "images/icons/icon-152x152.png",
32+
"sizes": "152x152",
33+
"type": "image/png"
34+
},
35+
{
36+
"src": "images/icons/icon-192x192.png",
37+
"sizes": "192x192",
38+
"type": "image/png"
39+
},
40+
{
41+
"src": "images/icons/icon-384x384.png",
42+
"sizes": "384x384",
43+
"type": "image/png"
44+
},
45+
{
46+
"src": "images/icons/icon-512x512.png",
47+
"sizes": "512x512",
48+
"type": "image/png"
49+
}
50+
],
51+
"splash_pages": null
52+
}

demo/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<meta name="mobile-web-app-capable" content="yes">
3838
<meta http-equiv="x-ua-compatible" content="ie=edge">
3939

40-
<link rel="icon" type="image/x-icon" href="favicon.ico">
40+
<link rel="manifest" href="assets/manifest.json">
4141
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
4242
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Mono:300" rel="stylesheet">
4343

0 commit comments

Comments
 (0)