Next.js i18n routing
Next.js has built in internationalization routing.
React Bricks starters with Next.js are already configure to leverage the i18n routing.
You just need to add languages to the languages array in next.config.json
:
module.exports = { i18n: { locales: ['en'], // Add your languages here defaultLocale: 'en', localeDetection: false, },}