看看简书的效果
一、转ico格式
二 、 完成以下代码
如果是脚手架新建的话
找到你的配置文件
// build/webpack.dev.conf.js
重点在这
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon: './static/logo.ico' // 加上这个,重点
})
//index.html 中
<link rel="shortcut icon" href="static/logo.ico" type="image/x-icon"/>
三、重启
npm run dev