Skip to content

Commit bcf32e9

Browse files
marcoscaceresSplaktar
authored andcommittedAug 9, 2019
fix(manifest.json): use rel paths, remove density
fixes #599 The paths are broken and the escapes "\" are unnecessary. Also, there is no longer `density` member in the spec. It was removed a few years ago.
1 parent 04f4c49 commit bcf32e9

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed
 

‎material.angular.io/src/assets/img/favicons/manifest.json

+12-18
Original file line numberDiff line numberDiff line change
@@ -8,40 +8,34 @@
88
"orientation": "portrait",
99
"icons": [
1010
{
11-
"src": "\/android-chrome-36x36.png",
11+
"src": "./android-chrome-36x36.png",
1212
"sizes": "36x36",
13-
"type": "image\/png",
14-
"density": "0.75"
13+
"type": "image/png"
1514
},
1615
{
17-
"src": "\/android-chrome-48x48.png",
16+
"src": "./android-chrome-48x48.png",
1817
"sizes": "48x48",
19-
"type": "image\/png",
20-
"density": "1.0"
18+
"type": "image/png"
2119
},
2220
{
23-
"src": "\/android-chrome-72x72.png",
21+
"src": "./android-chrome-72x72.png",
2422
"sizes": "72x72",
25-
"type": "image\/png",
26-
"density": "1.5"
23+
"type": "image/png"
2724
},
2825
{
29-
"src": "\/android-chrome-96x96.png",
26+
"src": "./android-chrome-96x96.png",
3027
"sizes": "96x96",
31-
"type": "image\/png",
32-
"density": "2.0"
28+
"type": "image/png"
3329
},
3430
{
35-
"src": "\/android-chrome-144x144.png",
31+
"src": "./android-chrome-144x144.png",
3632
"sizes": "144x144",
37-
"type": "image\/png",
38-
"density": "3.0"
33+
"type": "image/png"
3934
},
4035
{
41-
"src": "\/android-chrome-192x192.png",
36+
"src": "./android-chrome-192x192.png",
4237
"sizes": "192x192",
43-
"type": "image\/png",
44-
"density": "4.0"
38+
"type": "image/png"
4539
}
4640
]
4741
}

0 commit comments

Comments
 (0)
Please sign in to comment.