You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Webpack Dev Server 2.10.0 uses template strings (`abc${x}`), this syntax not supported by Internet Explorer. So Webpack Dev Server not working in IE any more ("Invalid character" errors).
For example (but not only) in this function (type: `webpack${type}`):
// Send messages to the outside, so plugins can consume it.
function sendMsg(type, data) {
if (
typeof self !== 'undefined' &&
(typeof WorkerGlobalScope === 'undefined' ||
!(self instanceof WorkerGlobalScope))
) {
self.postMessage({
type: `webpack${type}`,
data
}, '*');
}
}
The text was updated successfully, but these errors were encountered:
Webpack Dev Server 2.10.0 uses template strings (`abc${x}`), this syntax not supported by Internet Explorer. So Webpack Dev Server not working in IE any more ("Invalid character" errors).
For example (but not only) in this function (type: `webpack${type}`):
The text was updated successfully, but these errors were encountered: