I have set up i18n using gatsby-plugin-react-i18next plugin. All the contents work great but I also need to localize some static images but can't figure out how to get this working.
I have tried passing image prop on GatsbyImage
but this is not working.
<GatsbyImage
image={t('index.landingAdditionalContent.picture.src')}
alt={t('index.landingAdditionalContent.picture.alt')}
/>
Images are stored in src/images/
folder
This is the first time I am working with Gastby so please help me here