next-i18next.config.ts 292 B

12345678910
  1. import path from 'path';
  2. export const
  3. i18n = {
  4. defaultLocale: 'en_US',
  5. locales: ['ja_JP', 'zh_CN'],
  6. };
  7. export const defaultNS = 'translation';
  8. export const localePath = path.resolve('./public/static/locales');
  9. export const allLocales = [i18n.defaultLocale].concat(i18n.locales);