I want to use Suspense in my nextjs project but I get such an error whenever I use it:
Then I got to know that a solution does exist, the error can be rectified by modifying the next-i18next-config.js file like
react: {
useSuspense: false,
wait: true
}
However I only have the next.config.js in my project and do not know how to inculcate i18next in my existing nextjs project. Are there any other solutions for this? If not, how can I modify my project to include i18next?