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