Skip to content

Instantly share code, notes, and snippets.

@KevinVR
Created June 19, 2021 14:19
Show Gist options
  • Select an option

  • Save KevinVR/829bb7c672fb423901b6246a2ec81807 to your computer and use it in GitHub Desktop.

Select an option

Save KevinVR/829bb7c672fb423901b6246a2ec81807 to your computer and use it in GitHub Desktop.
// from https://www.npmjs.com/package/gatsby-plugin-intl
plugins: [
{
resolve: `gatsby-plugin-intl`,
options: {
// language JSON resource path
path: `${__dirname}/src/intl`,
// supported language
languages: [`en`, `ko`, `de`],
// language file path
defaultLanguage: `ko`,
// option to redirect to `/ko` when connecting `/`
redirect: true,
},
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment