mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 00:03:27 +10:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
const path = require('path');
|
|
|
|
const i18nConfig = {
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['de', 'en', 'kn', 'ta', 'hi'],
|
|
},
|
|
nsSeparator: '.',
|
|
localePath: path.resolve('./public/locales'),
|
|
ns: ['common', 'modals', 'landing', 'dashboard', 'builder'],
|
|
};
|
|
|
|
module.exports = i18nConfig;
|