I have a vue-cli app that is using socket.io-client to communicate to a socket server. The implementation works on all browsers but Internet Explorer 11. IE11 just renders an entirely blank white page. When I comment out import io from 'socket.io-client
, IE 11 renders fine. This leads me to think that I'm missing some kind of babel pollyfill. I checked the github repo:
https://www.npmjs.com/package/socket.io-client and it looks like they're already using a promise pollyfill. Also vue has '@vue/app' as a preset by default, so I'm not sure what's going on.
EDIT:
I am using "socket.io-client": "^2.3.0",