polyfill.js 465 B

123456789101112
  1. import '@babel/polyfill';
  2. import 'url-polyfill';
  3. import setprototypeof from 'setprototypeof';
  4. // React depends on set/map/requestAnimationFrame
  5. // https://reactjs.org/docs/javascript-environment-requirements.html
  6. // import 'core-js/es6/set';
  7. // import 'core-js/es6/map';
  8. // import 'raf/polyfill'; 只兼容到IE10不需要,况且fetch的polyfill whatwg-fetch也只兼容到IE10
  9. // https://github.com/umijs/umi/issues/413
  10. Object.setPrototypeOf = setprototypeof;