您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue.js中添加favicon圖標的方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
vue.js添加favicon圖標的方法:1、修改【index.html】文件,代碼為【<link rel="shortcut icon" type="image/x-icon" href="favico】;2、修改webpack配置文件。
vue.js添加favicon圖標的方法:
方法一:修改index.html文件
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
缺點:打包后需要將favicon.ico
復制到根目錄
方法二:修改webpack配置文件
1、找到build下的webpack.dev.conf.js文件
new HtmlWebpackPlugin({ filename: 'index.html', template: 'index.html', inject: true, favicon: path.resolve('favicon.ico') // 新增 }),
2、找到build下的webpack.prod.conf.js文件
new HtmlWebpackPlugin({ filename: config.build.index, template: 'index.html', inject: true, favicon: path.resolve('favicon.ico'), //新增 minify: { emoveComments: true, collapseWhitespace: true, removeAttributeQuotes: true ... }),
方法三 :vue項目打包后favicon無法正常顯示
解決方法:
在webpack.prod.config.js中的HtmlWebpackPlugin插件選項中配置favicon選項,其中favicon的路徑是個相對路徑
new HtmlWebpackPlugin({ filename: 'index.html', template: 'index.html', favicon: 'src/assets/img/favicon.ico', inject: true }),
修改配置文件后需重啟npm run dev
打包后根目錄下就會有favicon.ico
感謝你能夠認真閱讀完這篇文章,希望小編分享vue.js中添加favicon圖標的方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。