vue添加ico图标
1 先有一个需要图片,png 、jpg ...格式都可以2 把图片转换成 .con 格式的图标 ,http://www.bitbug.net/使用比特虫转换 ,目标尺寸:16*16 或者 32*32都行3 转换后的图标命名为 favicon.ico ,放在项目根目录,与 index.html 文件同级4 在 index.html 文件的<head></h
·
1 先有一个需要图片,png 、jpg ...格式都可以
2 把图片转换成 .con 格式的图标 ,http://www.bitbug.net/使用比特虫转换 ,目标尺寸:16*16 或者 32*32都行
3 转换后的图标命名为 favicon.ico ,放在项目根目录,与 index.html 文件同级
4 在 index.html 文件的<head></head> 内引入 <link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" rel="external nofollow" />
5 在 webpack.dev.conf.js 文件中配置 ,如下所示
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon: './favicon.ico' 此处是配置项
})
6 npm run dev
7 刷新页面即可
更多推荐
已为社区贡献4条内容
所有评论(0)