import Ember from 'ember'; import config from './config/environment'; var Router = Ember.Router.extend({ location: config.locationType }); Router.map(function() { this.route('parent', function(){ this.route('page-a', function() {}); this.route('page-b', function() {}); this.route('page-c', function() {}); }); }); export default Router;