Files
chatbot-ui/next-i18next.config.js
T
oznav2 ff13a3eab8 add_Hebrew_locales (#190)
* add_Hebrew_locales

Add Locales of Hebrew

* Update next-i18next.config.js

updating i-18next with Hebrew
2023-03-26 03:29:51 -06:00

25 lines
367 B
JavaScript

module.exports = {
i18n: {
defaultLocale: "en",
locales: [
"de",
"en",
"es",
"fr",
"ja",
"ko",
"pt",
"ru",
"sv",
"te",
"vi",
"zh",
"he",
],
},
localePath:
typeof window === 'undefined'
? require('path').resolve('./public/locales')
: '/public/locales',
};