Skip to content

Instantly share code, notes, and snippets.

@openhubdev
Last active April 5, 2021 16:03
Show Gist options
  • Save openhubdev/b93cd6b2f35e2a319fc4997668a409a2 to your computer and use it in GitHub Desktop.
Save openhubdev/b93cd6b2f35e2a319fc4997668a409a2 to your computer and use it in GitHub Desktop.
//next.config.js
module.exports = {
i18n: {
locales: ['en-US', 'fr', 'ko'],
domains: [
{
domain: 'yourdomain.com',
defaultLocale: 'en-US'
},
{
domain: 'yourdomain.fr',
defaultLocale: 'fr'
}
,
{
domain: 'yourdomain.kr',
defaultLocale: 'ko'
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment