1
import Ember from 'ember';
2
import config from './config/environment';
3
4
const Router = Ember.Router.extend({
5
location: config.locationType
6
});
7
8
Router.map(function() {
9
this.route('doc', { path: '/doc/:doc_id' });
10
11
12
export default Router;