1 | # gulp-favicons [![Build Status](https://travis-ci.org/haydenbleasel/gulp-favicons.svg?branch=master)](https://travis-ci.org/haydenbleasel/gulp-favicons)
|
2 |
|
3 | Favicons generator for Gulp. Simple wrapper around [favicons](https://github.com/haydenbleasel/favicons). Installed through NPM with:
|
4 |
|
5 | ```shell
|
6 | npm install gulp-favicons --save-dev
|
7 | ```
|
8 |
|
9 | Check out [favicons.io](http://favicons.io/) for all configuration options. Example usage:
|
10 |
|
11 | ```js
|
12 | var gulp = require('gulp'),
|
13 | favicons = require('../');
|
14 |
|
15 | gulp.task('default', function () {
|
16 | gulp.src('logo.png').pipe(favicons({
|
17 | // ...
|
18 | html: "test/index.html" // HTML files to modify. `string` or `array`
|
19 | })).pipe(gulp.dest('./images/'));
|
20 | });
|
21 |
|
22 | ```
|