Hello,
I’m trying to create new services with $resource instead of with $http. The problem is that when I insert the following script tag in my index.html:
<script src="lib/ionic/js/angular/angular-resource.min.js"></script>
I get the following error in my browser console:
GET http://localhost:8100/lib/ionic/js/angular/angular-resource.min.js.map 404 (Not Found)
As you can see, the browser try to get angular-resource.min.js.map
Why the browser is trying to get the .map file? How can I integrate ionicframework with ngResource? I would prefer to work with $resource instead of $http.
Thank you in advance!