I have an issue with IE 11 and my react app. I use Webpack, babel and polyfill.io cdn and all is nice until rendering bundeled file, then it stops doing anything. Do you hav
For anybody else who stumbles upon this problem,
If react-app-polyfill doesn't work for you, try core-js instead.
$ npm install core-js
Make sure this is the first line in your src/index.js file:
import 'core-js/stable'
Also you might not see the fix when you are in development.
For me the issue was solved only in the production version (react build)