Last active
April 6, 2020 10:58
-
-
Save theodesp/7321005cc2328bbb9f608a64d3f99204 to your computer and use it in GitHub Desktop.
gatsby-config-i18next
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
pathPrefix: '/gatsby-i18n/gatsby-starter-i18next', | |
plugins: [ | |
'gatsby-plugin-react-helmet', | |
{ | |
resolve: `gatsby-plugin-manifest`, | |
options: { | |
name: 'gatsby-starter-lingui', | |
short_name: 'starter', | |
start_url: '/gatsby-i18n/gatsby-starter-i18next/', | |
background_color: '#663399', | |
theme_color: '#663399', | |
display: 'minimal-ui', | |
icon: 'src/images/gatsby-icon.png', // This path is relative to the root of the site. | |
}, | |
}, | |
{ | |
resolve: `gatsby-source-filesystem`, | |
options: { | |
path: `${__dirname}/locale`, | |
name: `locale`, | |
}, | |
}, | |
{ | |
resolve: '@wapps/gatsby-plugin-i18next', | |
options: { | |
availableLngs: ['en', 'el'], | |
fallbackLng: 'el', | |
i18nextOptions: { | |
debug: false, | |
}, | |
}, | |
}, | |
'gatsby-plugin-offline', | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment