mamba-js-framework
Version:
Mamba JS Framework is a web framework to make a rapid development of web front ends based on AngularJS.
14 lines (10 loc) • 334 B
JavaScript
(function () {
angular
.module('App')
.config(configure);
configure.$inject = ['$httpProvider', 'InterceptorsProvider'];
function configure($httpProvider, InterceptorsProvider) {
$httpProvider.defaults.withCredentials = true;
$httpProvider.interceptors.push(InterceptorsProvider.$get);
}
})();