Handle more missing icons
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
parent
de146693aa
commit
0bd69bd3f3
3
app.js
3
app.js
@ -39,6 +39,9 @@ app.get("/apple-touch-icon*", function(req, res) {
|
|||||||
res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');
|
res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
app.get("/images/favico/*.png", function(req, res) {
|
||||||
|
res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');
|
||||||
|
});
|
||||||
|
|
||||||
app.get("/favicon.png", function(req, res) {
|
app.get("/favicon.png", function(req, res) {
|
||||||
res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');
|
res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');
|
||||||
|
Loading…
Reference in New Issue
Block a user