i18n.js 342 B

1234567891011121314
  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/', '/static/', '/public/'],
  11. });
  12. module.exports = NextI18NextInstance;