diff --git a/server/public/assets/images/apple-touch-icon-precomposed.png b/server/public/assets/images/apple-touch-icon-precomposed.png new file mode 100644 index 00000000..bd02b724 Binary files /dev/null and b/server/public/assets/images/apple-touch-icon-precomposed.png differ diff --git a/server/routing/icons_routing.js b/server/routing/icons_routing.js index 6ece1ed2..113f12a5 100644 --- a/server/routing/icons_routing.js +++ b/server/routing/icons_routing.js @@ -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')); }); +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;