Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-i18next

Gatsby plugin that provides i18n support.

Installation

yarn add @jamfury/gatsby-plugin-i18next
# npm install --save @jamfury/gatsby-plugin-i18next

Usage

Edit gatsby-config.js

module.exports = {
  plugins: [
    {
      resolve: `@jamfury/gatsby-plugin-i18next`,
      options: {
        // Add any options here
      },
    },
  ],
}

Options

You can pass options to the plugin:

  • availableLngs (Array [required])
  • fallbackLng (String [required])
  • siteUrl (String [optional])

For example:

options: {
  availableLngs: ['en', 'de'],
  fallbackLng: 'en',
  siteUrl: 'https://www.example.com/',
  redirect: true // pass `false` to disable auto redirect and generating of fallback lang pages (ie, /en/foo)
}

License

MIT

© 2023 Gatsby, Inc.