我有以下代码:
var result = __webpack_require__(806);
if (typeof result === "string") {
module.exports = result;
} else {
module.exports = result.toString();
}
仅在Internet Explorer 11中进行测试时收到以下错误:SCRIPT1002: Syntax error
我也明白了:' webpack_require '未定义
IE11中是否有相关的解决方法?在Chrome,Firefox和EDGE中,一切正常。
我引用了this和this,并且想知道我是否朝着正确的方向前进。
更新
我已经阅读了interesting article,并想知道我是应该使用polyfill service还是坚持使用babel-polyfill
?
由于