I\'ve inherited an angular project, and it\'s having problems loading the ui-bootstrap-tpls modules.
For each directive it\'s trying to use from bootstrap, I get som
For me it was the interceptor that was producing the error i had to add the below code to make it ignore the calls that are not made to my api:
if (config.url.indexOf('templates/') == 0 || config.url.indexOf('uib/') == 0) { console.log('ignoring '+config.url); return config; }