Vue. 之 替換 左上角 title標簽處的圖標


Vue. 之 替換 左上角 title標簽處的圖標

  1、icon命名為favicon.ico放在項目的位置:src/assets/favicon.ico

  2、在index.html中寫入: <link rel="shortcut icon" type="image/x-icon" href="src/assets/favicon.ico" media="screen" >

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <title>文檔資源后台管理 V1.0.0</title>

    <link rel="shortcut icon" type="image/x-icon" href="src/assets/favicon.ico" media="screen" >

  </head>
  <body>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

 

  3、修改build下面webpack.prod.conf.js和webpack.dev.conf.js:

  webpack.prod.conf.js:(   favicon: path.resolve('src/assets/favicon.ico'), // 引入圖片地址  )

    // generate dist index.html with correct asset hash for caching.
    // you can customize output by editing /index.html
    // see https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: config.build.index,
      template: 'index.html',
      favicon: path.resolve('src/assets/favicon.ico'), // 引入圖片地址
      inject: true,
      minify: {
        removeComments: true,
        collapseWhitespace: true,
        removeAttributeQuotes: true
        // more options:
        // https://github.com/kangax/html-minifier#options-quick-reference
      },
      // necessary to consistently work with multiple chunks via CommonsChunkPlugin
      chunksSortMode: 'dependency'
    }),

 

webpack.dev.conf.js:(   favicon: path.resolve('src/assets/favicon.ico'), // 引入圖片地址  )

   // https://github.com/ampedandwired/html-webpack-plugin
    new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      inject: true,
      favicon: path.resolve('src/assets/favicon.ico'), // 引入圖片地址 
    }),

 

  4、重新運行

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM