我想在浏览器选项卡更改上的 2 个图标之间进行更改但我什至不知道我应该在哪里执行此操作。
favicon 当前在 gatsby-config.js 中设置如下:
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-starter-hello-friend`,
short_name: `hello-friend`,
start_url: `/`,
background_color: `#292a2d`,
theme_color: `#292a2d`,
display: `minimal-ui`,
cache_busting_mode: `query`,
icon: `src/images/favicon1.png`,
icons: [
{
src: `src/images/favicon0.png`,
sizes: `512x512`,
type: `image/png`,
},
{
src: `src/images/favicon1.png`,
sizes: `512x512`,
type: `image/png`,
},
],
},
},
我正在使用这个启动器:https ://www.gatsbyjs.org/starters/panr/gatsby-starter-hello-friend/