Я использую приложение AngularJS 1.7.5 с плагином webkit-polyfill-инжектор.Проблема возникает в IE9 и некоторых версиях, если Edge.
Консоль IE вызывает проблему с этой функцией
function addScriptTag(identifier, json) {
//prep json
var pj = JSON.stringify(json);
//get existing
var tag = element[0].querySelector('script[identifier="' + identifier + '"]');
//update existing
if (tag) {
tag.innerText = pj;
return;
}
//create new
var newTag = document.createElement('script');
newTag.setAttribute("type", "application/ld+json");
newTag.setAttribute("identifier", identifier);
newTag.append(pj);
//add it
var logoScriptTag = element[0].querySelector('script[type="application/ld+json"]');
logoScriptTag.insertAdjacentElement('afterend', newTag);
}
Вот конфигурация плагина webkit-polyfill-injector
var res = {
mode: 'development',
context: path.resolve(__dirname, ''),
entry:
{
app: `webpack-polyfill-injector?${JSON.stringify({
modules: ['./app/app.js']
})}!`
},
output: {
path: outputPath,
publicPath: '/web/',
filename: '[name].bundle.js',
chunkFilename: '[name].bundle.js'
},
devServer: {
contentBase: 'build',
host:'192.168.1.101',
port: devServerPort,
historyApiFallback: {
index: '/web/',
rewrites: [
{ from: /\/soccer/, to: '/soccer.html' }
]
},
watchContentBase: true
},
plugins: [
new PolyfillInjectorPlugin({
polyfills: [
'Promise',
'Array.prototype.find',
]
}),...
Любая помощь будет принята с благодарностью!