Replace the top left icon title tag at the Vue. The

Replace the top left icon title tag at the Vue. The

  1, icon named favicon.ico on the location of the project: 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, the following webpack.prod.conf.js build and modify webpack.dev.conf.js:

  webpack.prod.conf.js :( favicon: path.resolve ( 'src / assets / favicon.ico'), // the introduction of picture address)

    // 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'), // the introduction of picture address)

   // https://github.com/ampedandwired/html-webpack-plugin 
    new new HtmlWebpackPlugin ({ 
      filename: 'index.html' , 
      Template: 'index.html' , 
      Inject: to true ,
       favicon for: path.resolve ( 'the src / Assets / the favicon.ico '), // incorporated picture address  
    }),

 

  4, re-run

 

Guess you like

Origin www.cnblogs.com/Charles-Yuan/p/11516170.html