You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
476 B

  1. 'use strict';
  2. var urlapi = "http://127.0.0.1:3017/";
  3. // Declare app level module which depends on views, and components
  4. angular.module('webApp', [
  5. 'ngRoute',
  6. 'ngMessages',
  7. 'angularBootstrapMaterial',
  8. 'app.navbar',
  9. 'app.main'
  10. ]).
  11. config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
  12. $locationProvider.hashPrefix('!');
  13. $routeProvider.otherwise({
  14. redirectTo: '/main'
  15. });
  16. }]);