美文网首页Vue时光轴
VUE 添加title中的小图标

VUE 添加title中的小图标

作者: 侯工 | 来源:发表于2018-10-12 11:12 被阅读0次

解决方案:
首先两个配置文件;

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" />

相关文章

网友评论

    本文标题:VUE 添加title中的小图标

    本文链接:https://www.haomeiwen.com/subject/bubwaftx.html