mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-25 09:24:54 +10:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
/**
|
|
* @type {import('next-i18next').UserConfig}
|
|
**/
|
|
module.exports = {
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en'],
|
|
},
|
|
debug: false,
|
|
nsSeparator: '.',
|
|
initImmediate: false,
|
|
localePath: './apps/client/public/locales',
|
|
ns: ['common', 'modals', 'landing', 'dashboard', 'builder'],
|
|
};
|