前言
uniapp 默認創(chuàng)建的項目并沒有給我們提供加上網(wǎng)站 favicon 的 ”機會”,但其實官方已經給出解決方法了屈嗤,使用的是 自定義模板
自定義模板的場景,通常有以下幾種情況:
- 調整界面 head 中的 meta 配置
- 補充 SEO 相關的一些配置「僅首頁」
- 加入百度統(tǒng)計等第三方js
如上吊输,使用 自定義模板 肯定是滿足我們解決添加 favicon 的了饶号,看一下怎么用吧。
1季蚂、工程跟項目新建一個 XXX.html 文件茫船,文件名字自己定義,比如 template.html
2扭屁、復制基本模板內容到這個html文件算谈,在此基礎上修改meta和引入js;
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>
<%= htmlWebpackPlugin.options.title %>
</title>
<script>
document.addEventListener('DOMContentLoaded', function() {
document.documentElement.style.fontSize = document.documentElement.clientWidth / 20 + 'px'
})
</script>
<link rel="stylesheet" href="<%= BASE_URL %>static/index.<%= VUE_APP_INDEX_CSS_HASH %>.css" />
</head>
<body>
<noscript>
<strong>Please enable JavaScript to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
3料滥、這 head 中加入我們的 favicon 文件
<link rel="icon" type="image/png" sizes="32x32" href="http://img.sscai.club/favicon1.png”>
4然眼、在 manifest.json -> h5 -> template 節(jié)點中關聯(lián)這個html文件的路徑。
ok幔欧,運行下項目我肯可以看到已經添加好了罪治。
綜上丽声,關于三種場景的使用方式可以自行擴展了礁蔗,比如增加百度統(tǒng)計代碼 > uniapp增加百度統(tǒng)計代碼(h5)
最后
博客地址:https://www.cnblogs.com/niceyoo
求關注??觉义,求推薦??,如果覺得這篇文章有點東西浴井,不妨左上角關注一下我晒骇。