UNPKG

generator-base-angularjs

Version:

AngularJS basic skeleton for webapp development. With RequireJS, Bootstrap, Sass. Also with JSHint and Grunt.

15 lines 303 B
define(['controllers', 'directives'], function() { 'use strict'; window.app.config(['$routeProvider', function($routeProvider) { $routeProvider. when('/', { templateUrl: 'templates/index.html', controller: 'indexController' }). otherwise({ redirectTo: '/' }); } ]); });