const path = require('path'); const i18nConfig = { i18n: { defaultLocale: 'en', locales: [ 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en', 'es', 'fa', 'fi', 'fr', 'he', 'hi', 'hu', 'id', 'it', 'ja', 'km', 'kn', 'ko', 'ml', 'mr', 'ne', 'nl', 'no', 'or', 'pl', 'pt', 'ro', 'ru', 'sr', 'sv', 'ta', 'tr', 'uk', 'vi', 'zh', ], }, nsSeparator: '.', localePath: path.resolve('./public/locales'), ns: ['common', 'modals', 'landing', 'dashboard', 'builder'], }; module.exports = i18nConfig;