700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > vue中网页图标favicon.ico不显示

vue中网页图标favicon.ico不显示

时间:2019-02-18 05:55:34

相关推荐

vue中网页图标favicon.ico不显示

1、通过服务器获取

在index.html里,添加link,若href是引用服务器上的图片,在不跨域的情况下ok的

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

2、放在本地

vue中,需要修改webpack.prod.conf.js配置,并把favicon.ico放在最外层根目录下

new HtmlWebpackPlugin({filename: config.build.index,template: 'index.html',inject: true,hash: timestamp,favicon: './favicon.ico', //引入favicon.icominify: {removeComments: true,collapseWhitespace: true,removeAttributeQuotes: true},chunksSortMode: 'dependency'}),

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。