create-react-app创建项目之后无法在IE上正常访问

 

 

修改代码支持IE11 (github地址:添加代码支持IE11)

修改package.json,index.js,然后删除node_modules,重新安装


修改代码支持IE10/IE9 (github地址:添加代码支持IE10/IE9)

上一步骤之后,IE10/IE9存在下面问题

(1)安装 core-js mutation-observer

npm install core-js mutation-observer --save

(2)index.js引入

(3)webpack.config.js修改,调换位置


修复遗留问题setprototypeof(github地址:修复兼容IE10/IE9遗留问题
 

(1)安装setprototypeof

npm install setprototypeof --save

(2)手动添加polyfill.js

import setprototypeof from  'setprototypeof';

Object.setPrototypeOf = setprototypeof; 

(3)index.js引入polyfill.js文件



验证完成
 

 

资源链接:

https://github.com/facebook/create-react-app/issues/5674
https://github.com/facebook/create-react-app/issues/5336
https://github.com/facebook/create-react-app/tree/master/packages/react-app-polyfill
https://github.com/wesleytodd/setprototypeof

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐