mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 07:43:10 +10:00
14 lines
355 B
JavaScript
14 lines
355 B
JavaScript
const path = require('path');
|
|
|
|
const i18nConfig = {
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['ar', 'bn', 'da', 'de', 'en', 'es', 'fr', 'hi', 'it', 'kn', 'pl', 'ta', 'tr', 'zh'],
|
|
},
|
|
nsSeparator: '.',
|
|
localePath: path.resolve('./public/locales'),
|
|
ns: ['common', 'modals', 'landing', 'dashboard', 'builder'],
|
|
};
|
|
|
|
module.exports = i18nConfig;
|