Reactive-Resume/client/next-i18next.config.js

14 lines
283 B
JavaScript

const path = require('path');
const i18nConfig = {
i18n: {
defaultLocale: 'en',
locales: ['en', 'kn'],
},
nsSeparator: '.',
localePath: path.resolve('./public/locales'),
ns: ['common', 'modals', 'landing', 'dashboard', 'builder'],
};
module.exports = i18nConfig;