0

I have react application trying to run the app in IE by default the version of IE is 7 where it is not working however it is working IE 9 and above by followed the steps fron the question below

https://stackoverflow.com/questions/43756211/best-way-to-polyfill-es6-features-in-react-app-that-uses-create-react-app

but the app is not wokring in IE7 and IE9

Tried to do following in the src/index.js

import 'react-app-polyfill/ie7';
import 'react-app-polyfill/ie8';

which says module not found

Please say is there a way to show the application in IE7 and IE9

dhana lakshmi
  • 599
  • 8
  • 23
  • ReactJS do not supports the IE 7 and IE 8 version. If you think that the below suggestion can answer your question then you can try to accept the answer. It can help other community members in the future in similar kinds of issues. Thanks for your understanding. [See here](https://stackoverflow.com/help/someone-answers) – Deepak-MSFT Sep 11 '20 at 09:17

1 Answers1

0

It looks like ReactJS can only work with the IE 9, IE 10 and IE 11 versions. To support the IE 9, IE 10 and IE 11 you need to add polyfills. IE versions older then IE 9 are not supported.

So it looks like you cannot run the ReactJS app on the IE 7 or IE 8 browser. The IE 7 and IE 8 are too old versions and out of support scope of the Microsoft. I suggest you to use the latest Microsoft browser to avoid such kind of issues. If you are not able to move to the latest Microsoft browser then at least try to use the IE 11 browser.

enter image description here

References:

  1. Supported Browsers

  2. react-app-polyfill

Deepak-MSFT
  • 8,111
  • 1
  • 6
  • 14