From 0bd69bd3f3c2917e44c6bbfe43fc164d4cebb0a9 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Tue, 19 Jul 2022 07:08:25 +0100 Subject: [PATCH] Handle more missing icons Signed-off-by: Marcus Noble --- app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app.js b/app.js index 1d1bd99..1743922 100644 --- a/app.js +++ b/app.js @@ -39,6 +39,9 @@ app.get("/apple-touch-icon*", function(req, res) { 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) { res.sendFile(__dirname + '/build/images/favico/apple-touch-icon.png');