解決Vue項目中favicon圖標無法正常顯示方法


方法一:

  1.將favicon.ico文件存放到項目根路徑下;

  2.配置webpack.dev.conf.js

     new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      favicon: path.resolve('favicon.ico'),
      inject: true
    })
 
 
方法二:

  1.將favicon.ico文件存放到static文件夾下;

  2.配置webpack.dev.conf.js

     new HtmlWebpackPlugin({
      filename: 'index.html',
      template: 'index.html',
      favicon:'static/favicon.ico',
      inject: true
    })
 
 
方法三:
  圖片文件有緩存,清除緩存


免責聲明!

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



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