Hello! Is it possible to use CDN js lib instead o...
# javascript
a
Hello! Is it possible to use CDN js lib instead of bundled NPM? I put this in webpack config:
module.exports = {
externals: {
firebase: 'Firebase'
}
};
But, unfortunately, receive "_Module 'firebase' not found_" build error in case of no NPM. What did I miss?