You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.
I recently tried out version 4.0.8. Mainly for the reason that SASS files are supported (i.e. you can directly import scss files in your tsx files).
It works pretty well in the good browsers.
However it looks like the support (polyfills I guess) for IE (11) is gone, because in IE I now get this error: Unhandled promise rejection ReferenceError: 'fetch' is undefined.
(which is to be expected because fetch API isn't supported by IE out of the box).
When upgrading react-scripts-ts it also added a default browserslist to my package.json:
I recently tried out version
4.0.8
. Mainly for the reason that SASS files are supported (i.e. you can directly importscss
files in yourtsx
files).It works pretty well in the good browsers.
However it looks like the support (polyfills I guess) for IE (11) is gone, because in IE I now get this error:
Unhandled promise rejection ReferenceError: 'fetch' is undefined
.(which is to be expected because fetch API isn't supported by IE out of the box).
When upgrading
react-scripts-ts
it also added a defaultbrowserslist
to mypackage.json
:According to this list it's clear for me that IE 11 is not supported anymore.
So I tried to modify the list like this (or even remove it entirely), in the hope that it then will add more polyfills or whatsoever:
However the behavior is unchanged.
Now before I invest more time in this, I wanted to ask a simple question:
Will version >= 4.0.8 not support Internet Explorer anymore, is this a bug or simply my own mistake?
The text was updated successfully, but these errors were encountered: