mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 20:39:56 +00:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
![]() |
import EmberRouter from '@ember/routing/router';
|
||
|
import config from './config/environment';
|
||
|
|
||
|
const Router = EmberRouter.extend({
|
||
|
location: config.locationType,
|
||
|
rootURL: config.rootURL
|
||
|
});
|
||
|
|
||
|
Router.map(function() {});
|
||
|
|
||
|
export default Router;
|