UNPKG

@peterek/vite-plugin-favicons

Version:

Simple Vite plugin to generate favicons from source image. Nothing more, nothing less.

7 lines (6 loc) 194 B
module.exports = (icons) => { return async function transformIndexHtml(html) { const { html: favicon } = await icons return html.replace('<!-- FAVICONS -->', favicon.join('\n')) } }