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.

24 lines
609 B

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