我在 IE11 的控制台中收到以下错误 -
SCRIPT5007: Unable to set property 'nextEffect' of undefined or null reference.
我正在6.26.0
使用babel-polyfill
.
我已经babel-polyfill
在 webpack.config.js 中添加了。
entry: ['babel-polyfill', './src/index.js']
我在 IE11 的控制台中收到以下错误 -
SCRIPT5007: Unable to set property 'nextEffect' of undefined or null reference.
我正在6.26.0
使用babel-polyfill
.
我已经babel-polyfill
在 webpack.config.js 中添加了。
entry: ['babel-polyfill', './src/index.js']
请尝试https://www.jianshu.com/p/3b27dfc6785c:(no more -1 pls)全局babel-polyfill(不要使用useBuiltIns)说明方法3.1:(浏览器环境)在html标签babel-中单独引入polyfill.js(CDN 或本地文件) 方法3.2: package.json在配置文件中添加babel-polyfilldependencies, webpackadd entry: eg entry: ["babel-polyfill",'./src/app.js'], polyfill会打包到这个入口文件中,并放在文件的最开始方法3.3:package.json中添加babel-polyfilldependencies,webpack使用入口文件顶部的import/requireintroduction,如`import 'babel-polyfill' ``