Internationalization
Multiple languages feature is an important for your app. To have this enabled the app uses i18next (opens in a new tab).
How it works?
-At first, i18next library needs a config and initialization file, in this case, src/i18n
file.
- Thereupon, Import initialization file in the
App.jsx
then i18next added globally in your projects.(In nextjs version import in the src/app/layout.jsx)
How to remove?
- At first, Remove i18n import file from
src/App.jsx
component(In nextjs version remove from src/app/layout.jsx)
- After that, Delete the
src/components/i18n
folder from app - At last, Uninstall dependecies i18next and react-i18next (opens in a new tab)
or