i18n.js 340 B

123456789101112131415
  1. const NextI18Next = require('next-i18next').default;
  2. const NextI18NextInstance = new NextI18Next({
  3. defaultNS: 'common',
  4. lowerCaseLng: true,
  5. localeSubpaths: {
  6. 'zh-tw': 'zh-tw',
  7. 'zh-cn': 'zh-cn',
  8. ja: 'ja',
  9. },
  10. defaultLanguage: 'en',
  11. otherLanguages: ['zh-tw', 'zh-cn', 'ja'],
  12. });
  13. module.exports = NextI18NextInstance;