This error occurs at compile time and the console will report this error when you load the browser. The workaround is to remove the "^" from the Bower.json file "jquery": "^1.11.3" into "jquery": "1.11.3".
The original Bower.json file is as follows:
{ "Name": "Borrow", "Dependencies": { "Ember": "1.13.7", "Ember-cli-shims": "ember-cli/ember-cli-shims#0.0.3", "Ember-cli-test-loader": "ember-cli-test-loader#0.1.3", "Ember-data": "1.13.8", "Ember-load-initializers": "ember-cli/ember-load-initializers#0.1.5", "Ember-qunit": "0.4.9", "Ember-qunit-notifications": "0.0.7", "Ember-resolver": "~0.1.18", "jquery": "^1.11.3", "Loader.js": "ember-cli/loader.js#3.2.1", "Qunit": "~1.18.0" }}
Then it becomes as follows:
{ "name": "Borrow" , "dependencies" " ember ":" 1.13.7 ", " Ember-cli-shims " : "ember-cli/ember-cli-shims#0.0.3" " Ember-cli-test-loader ":" ember-cli-test-loader#0.1.3 " "Ember-data": "1.13.8" , "ember-load-initializers": "ember-cli/ember-load-initializers#0.1.5" ,
"Ember-qunit": "0.4.9" " ember-qunit-notifications ":" 0.0.7 ", "Ember-resolver": "~0.1.18" " jquery ":" 1.11.3 ", "loader.js": "ember-cli/loader.js#3.2.1" " Qunit ":" ~1.18.0 " }}
Then execute the bower cache Clean command, and then execute Bower install and restart the Ember server when the command is complete.
Ember could not find module ' ember ' imported from ' Mgapp/app problem resolution