0.5.0 • Published 1 year ago

rollup-plugin-favicons v0.5.0

Weekly downloads
8
License
MIT
Repository
github
Last release
1 year ago

rollup-plugin-favicons

Rollup plugin to generating favicons and their associated files.

It uses the favicons generator under the hood.

This plugin was inspired by the favicons-webpack-plugin.

The plugin can be used alongside the rollup-plugin-html2. In this case rollup-plugin-favicons should be placed before rollup-plugin-html2 in the plugin list.

By default, the plugin uses the Rollup assets emission mechanism. This means that all generated favicons and manifests will be placed under the Rollup output directory. If you need a custom output directory you can use the callback property.

Install

npm i -D rollup-plugin-favicons

Usage

// rollup.config.js

import favicons from 'rollup-plugin-favicons'
import html2 from 'rollup-plugin-html2'


export default {
  input: 'index.js',
  output: {
    dir: 'dist',
    format: 'es',
  },
  plugins: [
    favicons({
      source: 'icon.svg',
      configuration: {
        appName: process.env.npm_package_displayName,
      },
    }),
    html2({
      template: 'index.html',
    }),
  ],
}

Options

source

Type

string

A path to a source image which would be used to generate icons.

configuration

Type

object

A configuration for the favicons. For details please read the link.

cache

Type

boolean | string | undefined

Default

'node_modules/.cache/favicons'

Where to cache generated favicons and manifests or not.

Set to true or undefined to use the default cache location or set a custom path.

callback

Type

(response: object) => void | undefined

A custom callback that takes a response of favicons generator. See example.

License

MIT © Petr Tsymbarovich

0.5.0

1 year ago

0.4.1

2 years ago

0.4.0

3 years ago

0.3.0-beta.1

3 years ago

0.3.0-beta.0

4 years ago

0.2.0

4 years ago

0.1.0

4 years ago