I am currently working on a Vue.js project that is being hosted on a website where I do not have control over the other elements loaded on the page.
Whenever another script on the page loads the browser's version of Vue.js, my project starts throwing errors that specifically reference this external library.
My suspicion is that this issue arises from the global window.Vue
variable being set by the conflicting script. Even when I bundle Vue with Webpack and avoid separating it into its own file, these problems persist.
Does anyone have any suggestions for debugging this issue? Or perhaps a way to ensure that my application exclusively uses the bundled ES Module version of Vue.js?