gulp-favicons

Favicons generator for Gulp

Usage no npm install needed!

<script type="module">
  import gulpFavicons from 'https://cdn.skypack.dev/gulp-favicons';
</script>

README

gulp-favicons

npm version Build Status

gulp-favicons is a gulp plugin for Favicons.

Usage

var favicons = require('gulp-favicons');

gulp
  .src('./favicon.png')
  .pipe(
    favicons({
      appName: 'My App',
      appShortName: 'App',
      appDescription: 'This is my application',
      developerName: 'Hayden Bleasel',
      developerURL: 'http://haydenbleasel.com/',
      background: '#020307',
      path: 'favicons/',
      url: 'http://haydenbleasel.com/',
      display: 'standalone',
      orientation: 'portrait',
      scope: '/',
      start_url: '/?homescreen=1',
      version: 1.0,
      logging: false,
      html: 'index.html',
      pipeHTML: true,
      replace: true,
    })
  )
  .pipe(gulp.dest('./dest'));