Search code examples
ember.jsember-cli

The user loads the app for the first time display this page?


When a user loads the app for the first time show this page. This should be simple but I got confused on how to do this. I know how to create routes and link them. Do I need to create an index route ?

Router.map(function() {
   //Show this route first
});

Solution

  • An index route is there by default. You should just implement templates/index.hbs and it will be rendered.