i18n.js 362 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. },
  8. defaultLanguage: 'en',
  9. otherLanguages: ['zh-tw'],
  10. ignoreRoutes: ['/_next/', '/public/'],
  11. localePath: 'public/locales',
  12. });
  13. module.exports = NextI18NextInstance;