方法一:
1.將favicon.ico文件存放到項目根路徑下;
2.配置webpack.dev.conf.js
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
favicon: path.resolve('favicon.ico'),
inject: true
})
方法二:
1.將favicon.ico文件存放到static文件夾下;
2.配置webpack.dev.conf.js
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
favicon:'static/favicon.ico',
inject: true
})
方法三:
圖片文件有緩存,清除緩存