After creating a fresh application using ember new ietest --no-welcome
and executing ember serve
without modifying any code, the Ember app loads fine in Chrome and IE Edge but doesn't load in IE 11 and yields two errors:
Syntax Error at vendor.js (64292,18)
Expected Identifier at ietest.js (32,9)
The page is blank, it doesn't even display "Welcome to Ember". The errors also occur if I leave off --no-welcome
. In that case, the hamster page doesn't appear.
ember-cli version: 3.1.2
OS: Windows 10
Any way to fix this? Perhaps a setting in IE11 that I can toggle?
config/targets.js
if you want to support IE11 in the development build. – mwp