precomposed image also present

This commit is contained in:
Kasper Rynning-Tønnesen
2017-10-03 16:34:45 +02:00
parent 94004af00c
commit f71d641f8f
2 changed files with 4 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -17,4 +17,8 @@ router.route('/apple-touch-icon.png').get(function(req, res, next) {
res.sendFile(path.join(pathThumbnails, '/public/assets/images/apple-touch-icon.png')); res.sendFile(path.join(pathThumbnails, '/public/assets/images/apple-touch-icon.png'));
}); });
router.route('/apple-touch-icon-precomposed.png').get(function(req, res, next) {
res.sendFile(path.join(pathThumbnails, '/public/assets/images/apple-touch-icon-precomposed.png'));
});
module.exports = router; module.exports = router;