vue favicon.ico正确显示
方法1 修改webpack配置vue 中修改webpack配置使其正确显示, 版本如下"vue": "^2.1.9","webpack": "^2.2.1","html-webpack-plugin": "^2.28.0"修改文件webpack.dev.conf.js# divlet path = require('path') // 增加new HtmlW
·
方法1 修改webpack配置
vue 中修改webpack配置使其正确显示, 版本如下
"vue": "^2.1.9",
"webpack": "^2.2.1",
"html-webpack-plugin": "^2.28.0"
修改文件
webpack.dev.conf.js
# div
let path = require('path') // 增加
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true,
favicon: path.resolve('favicon.ico') // 增加
}),
webpack.prod.conf.js
# prod
new HtmlWebpackPlugin({
filename: config.build.index,
template: 'index.html',
inject: true,
favicon: path.resolve('favicon.ico'), //新增
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
...
}),
以上代码 笔者通过测试, 可以正确展示favicon图标
方法2 修改index.html
测试没通过, 待有时间解决做个记录
<head>
<meta charset="utf-8">
...
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
</head>
更多推荐
已为社区贡献5条内容
所有评论(0)