Added ads.txt

This commit is contained in:
Kasper Rynning-Tønnesen
2018-12-02 13:53:49 +01:00
parent b17ff55643
commit b9d7d3ade5
2 changed files with 62 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ router.route('/favicon.ico').get(function(req, res, next) {
res.sendFile(path.join(pathThumbnails, '/public/assets/images/favicon.ico'));
});
router.route('/ads.txt').get(function(req, res, next) {
res.sendFile(path.join(pathThumbnails, '/public/assets/ads.txt'));
});
router.route('/browserconfig.xml').get(function(req, res, next) {
res.sendFile(path.join(pathThumbnails, '/public/assets/images/browserconfig.xml'));
});