You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{resolve: "gatsby-plugin-react-i18next",options: {
languages,
defaultLanguage,siteUrl: "https://www.yoursite.com/",i18nextOptions: {fallbackLng: defaultLanguage,supportedLngs: languages,defaultNS: "common",interpolation: {escapeValue: false,// not needed for react as it escapes by default},},},},
The text was updated successfully, but these errors were encountered:
Hello,
I just started a project, followed some tutorials to install gatsby-plugin-react-i18next. But I have an issue and I don't know if I can resolve that.
Scenario :
This is a sample project : GatsbyErrorI18n
Default language is EN
I have a link on the home page and when I click it I m redirected to the

/localhost:8000/destinations/test
.Where "test" is a slug :
Now I come back to the homepage
I change the language to "FR"
The path is now /localhost:8000/fr, all good
I click on the link (url on the link : http://localhost:8000/fr/destinations/test/), and I have
/localhost:8000/fr/fr/destinations/test
=> so doublefr
Index page:
Plugin config :
The text was updated successfully, but these errors were encountered: