DEV Community

Discussion on: Using next-i18next in Storybook

Collapse
 
rbgoncalves profile image
Rúben Gonçalves

Aren't you using "useTranslation" hook right? Because I've the same setup but what fails is my component using "useTranslation" hook from next-i18next instead of the one from react-i18next

Collapse
 
justincy profile image
Justin

Yes, I'm using the useTranslation() hook.

Collapse
 
ckeeney profile image
CJ Keeney

Ruben did you ever solve this issue?

Collapse
 
will0684 profile image
Jordan Willis

We are using this in main.js:

config.resolve.alias = {
  ...config.resolve.alias,
  'next-i18next': 'react-i18next'
}
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
tadjerounimohamedadel profile image
Adel Mohamed Tadjerouni

thanks