Files
frontend/app/router.js
2025-01-06 21:34:23 +01:00

12 lines
270 B
JavaScript

import EmberRouter from '@ember/routing/router';
import config from 'holygamesapp/config/environment';
export default class Router extends EmberRouter {
location = config.locationType;
rootURL = config.rootURL;
}
Router.map(function() {
this.route('login');
});