0

I have a website created in react js, when I try to open it on windows or android the loading happens normally. But on IOS devices it doesn't load anything from the site. I tried to use https://polyfill.io/v3/polyfill.min.js in my index but I still couldn't. PS: I don't have a mac to debug, tests only on an iphone version 15, I didn't find the iphone ios console to see the errors.

1 Answers1

0

Problem solved, first step was to update the browserslist. Second it was seen that the application was with storage in localStorage above what safari was handling, thus causing the error. Removed localStorage. Link: https://github.com/browserslist/browserslist Link: https://stackoverflow.com/questions/1921048/limit-of-localstorage-on-iphone#:~:text=Mobile%20Safari%20on%20the%20iPhone,limit%2C%20afaik%2C%20on%20localStorage.

  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – tjheslin1 Apr 12 '22 at 19:29
  • I'm experiencing this issue myself at the moment. What was the change you made to your browserslist? Is there a way for me to view what versions of React are broken with certain versions of iOS browsers? – Adam Elaoud Jul 30 '23 at 01:52