6.0.0 • Published 2 years ago

fastify-no-icon v6.0.0

Weekly downloads
847
License
MIT
Repository
github
Last release
2 years ago

fastify-no-icon

This is a simple plugin for Fastify to deal with annoying /favicon.ico requests. Under normal operation Fastify will throw an error because a route isn't registered to handle the request. This plugin merely gives it one.

Example

const fastify = require('fastify')()
fastify.register(require('fastify-no-icon'))
fastify.listen({
  port: 3000
})
// curl 127.0.0.1:3000/favicon.ico => empty 404 and no thrown error

License

MIT License