-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE11 Support #13
Comments
Well, I think this might be a problem, don't know how to fix that yet 😐 |
@leonardomso from a quick look (or 1-2 hours now 😄 ) I believe its the redux devtools, i changed it to this:
One other step I have taken (but which did not produce results) was to add a CDN script import in index.html to import polyfills As I said this CDN was not fixing the issue, had to change the dev tools - but I am keeping it for backup, as i need my app to run on IE11. This was apparently suggested by a number of people. |
Well, if you find any solution for this issue, feel free to send a PR, I'll love to merge |
Okay, so I have been reviewing this issue some this morning. From the Core-js repo:
The problem, as you know, is the needed polyfill for legacy browsers. I do not have a way to test, since I do not have a IE11 system, but it looks like react-app-polyfill might be a good fit for the legacy systems. It would be as simple as installing the package, and including in the first line of // This must be the first line in src/index.js
import 'react-app-polyfill/ie11'; |
Wow, thanks for that @eclectic-coding. I will see if I can find some time this week to do some upgrades in this boilerplate and include the |
It seems the current setup of the boilerplate / webpack does not support IE11. The following error is produced:
IE: Error: Unable to get property 'apply' of undefined or null reference.
I tried updating the babel-polyfill but it seems nothing is working. Any advice?
The text was updated successfully, but these errors were encountered: