UNPKG

connect-block-favicon

Version:

Middleware for Connect or Express to silence browser requests for favicon.ico with no content.

8 lines (7 loc) 209 B
module.exports = function blockFavicon () { return (req, res, next) => { if (req.url !== '/favicon.ico') return next() res.writeHead(204, { 'cache-control': 'max-age=31536000' }) res.end() } }