When some namespaces are loaded directly inside the app, the backend still try to make an HTTP request. This creates unnecessary requests to the server for translations that are already loaded, and do not exist on the server.
A solution would be to pass an array of namespaces to ignore, or refactor parsePayload so if the returned value is false, to skip for the given language.
When some namespaces are loaded directly inside the app, the backend still try to make an HTTP request. This creates unnecessary requests to the server for translations that are already loaded, and do not exist on the server.
A solution would be to pass an array of namespaces to ignore, or refactor
parsePayload
so if the returned value is false, to skip for the given language.