UNPKG

611 BMarkdownView Raw
1# gulp-favicons [![Build Status](https://travis-ci.org/haydenbleasel/favicons.svg?branch=gulp)](https://travis-ci.org/haydenbleasel/favicons)
2
3Favicons generator for Gulp. Simple wrapper around [favicons](https://github.com/haydenbleasel/favicons). Installed through NPM with:
4
5```
6npm install gulp-favicons --save-dev
7```
8
9Check out favicons for example options. Example usage:
10
11```
12gulp.task('default', function () {
13 gulp.src('index.html')
14 .pipe(favicons({
15 files: { dest: 'images/' },
16 settings: { background: '#1d1d1d' }
17 }))
18 .pipe(gulp.dest('./'));
19});
20```