-
Notifications
You must be signed in to change notification settings - Fork 49k
Closed
Description
After updating react-dom to version 17 the build now includes Array.fill() which isn't supported by ie11 without polyfilling. Coming from this line. Tested with just the default cra production build to make sure it wasn't a problem with my webpack config and the same issue.
return new Array(TotalLanes).fill(initial); |
Tested using CRA on version 16.9.8 of react and react-dom which works with the production build for ie11.
mihir0x69 and jmrsnt