所以我尝试在我的博客中添加网站图标,代码如下:在我的 gatsby-config.js 中
module.exports = {
siteMetadata: {
title: 'Chatbiz Blog',
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-catch-links',
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
icon: `https://blablabla/favicon.ico`
},
},
'gatsby-transformer-remark',
],
}
Run Code Online (Sandbox Code Playgroud)
所以问题是当我尝试这段代码时,网站图标无法在我的博客中呈现如何解决问题?
gatsby ×1