vue中添加title中的小圖標


webpack.prod.conf.js 這個文件中:
引入代碼const path = require('path') ;下面是進行配置: 
new HtmlWebpackPlugin({ 
    filename: config.build.index, 
    template: 'index.html', 
    favicon: path.resolve('./favicon.ico'), 
    inject: true, 
}), 

webpack.prod.dev.js這個文件中:
引入代碼:const path = require('path') ; 下面是進行配置: 
new HtmlWebpackPlugin({ 
    filename: 'index.html',
    template: 'index.html',
    favicon: path.resolve('./favicon.ico'), 
    inject: true, 
}), 

  

最后很關鍵的index.html中的代碼引入:

<link rel="shortcut icon" type="image/x-icon" href="./favicon.ico" rel="external nofollow" />

  


免責聲明!

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



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