0

I will start by saying I am new to Ember. I am starting to wrap my mind around the concepts but I haven't been able to make it work...

I tried following the basic tutorial on the emberjs.com website:

https://guides.emberjs.com/v2.2.0/tutorial/routes-and-templates/

As far as I can tell I have everything installed/updated properly, and I understand what is supposed to happen...but when I run the server via the "ember server" command my templates do not load. The index.html page is being picked up, but anything I put in my templates (including the application.hbs) is missing.

Any ideas?? I really want to get into Ember, but I can't get past page one of any tutorial I try because of this issue. Please help! :)

mlawson
  • 11
  • 2
  • 1
    Can you add your project to github so we can see it? Odds are you forgot an `{{outlet}}` tag – Patsy Issa Jan 12 '16 at 08:11
  • 1
    Possible duplicate of [New Ember app gives blank screen](http://stackoverflow.com/questions/34702746/new-ember-app-gives-blank-screen) – Patsy Issa Jan 12 '16 at 11:33

1 Answers1

3

You might be facing a recent ember-cli bug (which is fixed by Ember CLI 1.13.14 - released a few hours ago.). Several people have encountered that issue recently.

For reference, the fix (if you're not updating ember-cli) is (from this answer by Lawree)

This is a bug due to a new version of jQuery. For now you can change the following line in your bower.json file. Then run bower install and it should work.

"jquery": "^1.11.3", to

"jquery": "1.11.3",
Community
  • 1
  • 1
Pedro Rio
  • 1,444
  • 11
  • 16