@wwa/fastify-favicon
v2.3.1
Published
A fastify plugin to eliminate thrown errors for /favicon.ico requests
Readme
fastify-favicon
A plugin for Fastify to eliminate exceptions on requests to /favicon.ico.
Installation
npm install --save-dev @wwa/fastify-faviconUsage
const fastify = require('fastify')();
fastify.register(require('@wwa/fastify-favicon'));
fastify.listen(3000);Requests to /favicon.ico will return a 16x16 black icon.
