UNPKG

xitme

Version:

AngularJS boilerplate generator

16 lines (13 loc) 401 B
var MainApplication = function ($routeProvider) { this._routingConfig = $routeProvider; this._routingConfig.when('/', { label: 'Homepage', templateUrl: 'view/homepage.html', }).otherwise({redirectTo: function () { return '/'; }}); }; angular.module('@@app_name', [ 'ngRoute' ]).config(['$routeProvider', MainApplication]);