Below is the content of my vue.config.js
file:
module.exports = {
configureWebpack: {
externals: {
"vue": "Vue",
"core-js": "core-js",
},
},
};
By using this configuration, I have successfully excluded the vue.js (Vue) library and can now link it from a CDN.
However, despite specifying 'core-js' as an external library, it is still being packed with the build and not recognized as external. What could be causing this issue?