vue2 根据打包修改favicon.ico
时间: 2023-12-11 07:02:44 浏览: 166
vue2基本使用,包括概念以及使用场景
你可以在 `vue.config.js` 文件中配置 `favicon`,如下所示:
```javascript
module.exports = {
chainWebpack: config => {
config.plugin('html').tap(args => {
args[0].favicon = '/path/to/your/favicon.ico'
return args
})
}
}
```
其中 `path/to/your/favicon.ico` 替换为你的 favicon 文件路径即可。这个配置将在打包时自动替换 `index.html` 文件中的 `favicon`。
阅读全文