我当前正在创建我的Web开发服务网站,并使用create-react-app创建了它。该网站可以在台式机和手机上正常工作。我唯一的问题是该网站无法显示在iPhone 6S(Chrome或Safari)中。我当时正在浏览互联网,但找不到任何答案。我希望得到任何答案。老实说,我不知道从哪里开始,但是所有代码都位于此github存储库中:https://github.com/luisenriquecgongora/oracliom-website 该网站托管在AWS S3中,并使用CloudFront和Route 53交付内容。该网站为www.oracliom.com
我已经尝试在缓存中包含此标头:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
我还尝试清理手机的缓存。
完整代码位于此处:https://github.com/luisenriquecgongora/oracliom-website
答案 0 :(得分:0)
尝试安装:
npm i core-js raf
然后在index.js中
import 'core-js/fn/number/is-nan'; import 'core-js/es7/'; import 'core-js/es6/'; import 'raf/polyfill';
ref:https://github.com/facebook/create-react-app/issues/4844