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