前言:使用vue-cli2搭建的项目favicon.ico小logo不显示。
解决方案:
1.把favicon.ico放入static文件夹中,如图:
2.在index.html中引入
<link type="image/x-icon" href="./static/favicon.ico" rel="shortcut icon external nofollow"/>
如图:
3.重新运行打包命令即可:
npm run build
4.如果未生效,尝试一下清理缓存。
前言:使用vue-cli2搭建的项目favicon.ico小logo不显示。
1.把favicon.ico放入static文件夹中,如图:
2.在index.html中引入
<link type="image/x-icon" href="./static/favicon.ico" rel="shortcut icon external nofollow"/>
如图:
3.重新运行打包命令即可:
npm run build
4.如果未生效,尝试一下清理缓存。