1.将favicon.icon文件放在index.html同级目录下
2.在webpack.config.js内配置
//以下配置的index.html在src目录内
new HtmlWebpackPlugin({
template: './src/index.html',
filename: 'index.html',
favicon: path.resolve('src/favicon.icon')
}),
在index.html内配置
<link rel="shortcut icon" href="./favicon.icon" type="image/x-icon"/>
之后favicon.icon会被打包放在dist文件夹根目录