123456789101112131415 |
- const NextI18Next = require('next-i18next').default;
- const NextI18NextInstance = new NextI18Next({
- defaultNS: 'common',
- lowerCaseLng: true,
- localeSubpaths: {
- 'zh-tw': 'zh-tw',
- },
- defaultLanguage: 'en',
- otherLanguages: ['zh-tw'],
- ignoreRoutes: ['/_next/', '/public/'],
- localePath: 'public/locales',
- });
- module.exports = NextI18NextInstance;
|