UNPKG

gatsby-theme-i18n

Version:

A Gatsby theme for providing internationalization support to your Gatsby site by taking in a configuration file and creating prefixed, enriched pages for each language.

19 lines (16 loc) 393 B
const defaultLang = `en` function withDefaults(themeOptions) { return { ...themeOptions, configPath: themeOptions.configPath, defaultLang: themeOptions.defaultLang || defaultLang, prefixDefault: themeOptions.prefixDefault ? themeOptions.prefixDefault : false, locales: themeOptions.locales || null, } } module.exports = { defaultLang, withDefaults, }