浮声新志

webpack插件篇:FaviconsWebpackPlugin详解

用途说明

FaviconsWebpackPlugin ()

Automatically generates over 30 favicons (configurable) for Android, iOS, and the different desktop browsers from one source png. Integrates well with the html-webpack-plugin.

webpack.config.js配置

1
2
3
4
5
6
7
8
const FaviconsWebpackPlugin = require('favicons-webpack-plugin');
var plugins = [];
{
plugins: [
new FaviconsWebpackPlugin('my-logo.png')
]
}

案例

1
2