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
When i try to install your package i get error from next-i18next package.
Error: locale is not set with serverSideTranslations.
Can you tell me how to make it work with nextjs next-i18next?
This is my implementation of serverSideTranslations.
import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
export async function getStaticProps({ locale }) {
return {
props: {
...(await serverSideTranslations(locale, ['common', 'footer'])),
// Will be passed to the page component as props
},
};
}
The text was updated successfully, but these errors were encountered:
When i try to install your package i get error from next-i18next package.
Error: locale is not set with
serverSideTranslations
.Can you tell me how to make it work with nextjs next-i18next?
This is my implementation of
serverSideTranslations
.The text was updated successfully, but these errors were encountered: