## The problem
Issue wingify/vwo-node-sdk#54 (closed, 16 comments): A user reported that the published vwo-javascript-sdk.min.js bundle contained unresolved git merge conflicts and was breaking the VWO WordPress plugin for clients. Maintainers first pointed at the latest unpinned CDN URL, then published a new version of the plugin/SDK as the earlier one was faulty, and confirmed the pinned @1 CDN URL reflected the fix. The reporter tried it and confirmed the error was gone.

## What to do
If the VWO WordPress plugin is loading broken JavaScript, check the vwo-javascript-sdk bundle it pulls from the CDN: at one point the published minified file literally contained unresolved git merge conflicts. The maintainers fixed this by publishing a new version, and the reporter confirmed the error went away. Practical takeaway: the plugin loads https://cdn.jsdelivr.net/npm/vwo-node-sdk@1/dist/vwo-javascript-sdk.min.js, and @1 means you always get whatever was published most recently once the jsDelivr cache updates. If you want updates only when you choose, pin an explicit version in the URL, like vwo-node-sdk@1.63.2. And if you ever see conflict markers (<<<<<<<) inside a published bundle again, it is the vendor's release that is broken, not your site.