Create Test Reporting landing page
[releng.git] / utils / test / reporting / pages / app / scripts / config.js
1 /**
2  * @ngdoc overview
3  * @name opnfvApp
4  * @description
5  * # opnfvApp
6  *
7  * Main config file of the application.
8  */
9 angular
10     .module('opnfvApp').config(['$httpProvider', '$qProvider', function($httpProvider, $qProvider) {
11
12             $httpProvider.defaults.useXDomain = true;
13             delete $httpProvider.defaults.headers.common['X-Requested-With'];
14
15             $qProvider.errorOnUnhandledRejections(false);
16
17         }
18
19     ]);