You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

13 lines
306 B

const badgen = require('badgen')
module.exports = function serve404 (req, res) {
res.writeHead(404, {
'Content-Type': 'image/svg+xml;charset=utf-8',
'Cache-Control': 'public, max-age=360, s-maxage=86400'
})
res.end(badgen({
subject: 'Badgen',
status: '404',
color: 'red'
}))
}