1. 程式人生 > 程式設計 >Vue 修改網站圖示的方法

Vue 修改網站圖示的方法

1、在stateic下新增favicon.ico檔案

Vue 修改網站圖示的方法

2、修改index.html檔案,如圖

Vue 修改網站圖示的方法

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
  <link rel="icon" type="image/x-icon" href="static/favicon.ico" rel="external nofollow" >
  <title>網站名稱</title>
 </head>
 <body>
  <div id="app"></div>
  <!-- built files will be auto injected -->
 </body>
</html>

3、如果有新開頁面無法顯示圖示問題,修改bulid下的webpack.dev.conf.js檔案

Vue 修改網站圖示的方法

Vue 修改網站圖示的方法

  new HtmlWebpackPlugin({
   filename: 'index.html',template: 'index.html',inject: true,favicon:'static/favicon.ico'//新增
  }),

4、這個時候再重新啟動一次專案就好啦

以上就是Vue 修改網站圖示的方法的詳細內容,更多關於Vue 修改網站圖示的資料請關注我們其它相關文章!