/** @type {import('next-intl').NextIntlConfig} */ module.exports = { // EN: Other locales you want to support // VI: Các ngôn ngữ khác bạn muốn hỗ trợ locales: ['en', 'vi'], // EN: Used when no locale matches // VI: Được sử dụng khi không có locale nào khớp defaultLocale: 'en', // EN: Path to the locale files // VI: Đường dẫn đến các file locale messages: { en: './src/i18n/messages/en.json', vi: './src/i18n/messages/vi.json' } };