A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
In web project we have some external CMS modules, one of them defines client resources that are loaded in CMS in config file:
WebProject\modules\_protected\LionbridgeConnector\Module.config
It uses jquery-3.3.1.
Also we have our own module.config file in root of the project (WebProject\Module.config) where client resources for our custom CMS modules are defined.
It uses jquery-2.1.4.
These two versions of jquery are in conflict and produce error in console:
As result, some js features are not working (mainly Lionbridge).
If I remove one of the jquery files, the error dissapears (and Lionbridge starts working normally) but module left without jquery brakes.
How I can deal with this? Is there any way to avoid conflict between them?