Created
June 19, 2021 14:19
-
-
Save KevinVR/829bb7c672fb423901b6246a2ec81807 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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