Yucky icon 😝, I need to change it. Where can I find it?
Ah right in the gatsby-config.js
I have the gatsby plugin installed for gatsby-plugin-manifest, this makes life a breeze. 😁 🌲
The option we are looking for is icon, sweet.
Now looking at the docs, what I found interesting is the localization support, this is something I am going to explore in further detail in the next post by adding multiple language support to the site, interesting stuff and will aid in my learning path.
{
resolve: `gatsby-plugin-manifest`,
options: {
...
...
icon: `src/images/profile-pic.png`, // This path is relative to the root of the site.
localize: [
{
start_url: `/af/`,
lang: `af`,
name: `My denke`,
short_name: `My denke`,
description: `My denke.`,
},
],
},
},
Documentation easy to follow, thats a super 👍 from me.