Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.10.0 not working in Internet Explorer due to template strings #1265

Closed
Q-Man opened this issue Jan 9, 2018 · 2 comments
Closed

2.10.0 not working in Internet Explorer due to template strings #1265

Q-Man opened this issue Jan 9, 2018 · 2 comments

Comments

@Q-Man
Copy link

Q-Man commented Jan 9, 2018

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
    }, '*');
  }
}
@shellscape
Copy link
Contributor

Closing as invalid. See the issue template.

@luisbelloch
Copy link

Duplicates #1268

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants