Last active
April 6, 2020 11:05
-
-
Save theodesp/100f35b5f4eceb2bc2b5761b123bb58a to your computer and use it in GitHub Desktop.
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
import i18next from 'i18next'; | |
function setupI18next(fallbackLng, i18nextOptions) { | |
i18next.init({ | |
debug: false, | |
defaultNS: 'messages', | |
fallbackLng, | |
react: { | |
useSuspense: false, | |
}, | |
...i18nextOptions, | |
}); | |
return i18next; | |
} | |
export default setupI18next; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment