@nest-middlewares/serve-favicon
TypeScript icon, indicating that this package has built-in type declarations

10.0.0 • Public • Published

Nest Middlewares - Serve Favicon

Coverage Status

This is the Nest Middleware wrapper around serve-favicon.

Installation

@nest-middlewares/serve-favicon is available from NPM. You can install it with this command:

npm install --save @nest-middlewares/serve-favicon

Usage

import { ServeFaviconMiddleware } from '@nest-middlewares/serve-favicon';

@Module(...)
export class MyModule {
    configure(consumer: MiddlewaresConsumer) {
        // IMPORTANT! Call Middleware.configure BEFORE using it for routes
        ServeFaviconMiddleware.configure( /* options as per helmet docs */ )
        consumer.apply(ServeFaviconMiddleware).forRoutes( /* your routes */ );
    }
}

Package Sidebar

Install

npm i @nest-middlewares/serve-favicon

Weekly Downloads

158

Version

10.0.0

License

MIT

Unpacked Size

5.58 kB

Total Files

6

Last publish

Collaborators

  • wbhob