在index.htm修改
<title>互动活动平台</title>
<link rel="icon" href="./src/assets/bg.png" type="bg.png">
<link rel="shortcut icon" href="./src/assets/bg.png" type="bg.png"> <!-- 必须 -->
在webpack.dev.conf.js中添加favicon:’./src/assets/bg.png’
路径要更index.html中保持一致
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon:'./src/assets/bg.png'
}),