This is my ionic.project file
> {
> "name": "proxy-example",
> "app_id": "",
> "proxies": [
> {
> "path": "/api",
> "proxyUrl": "apireferencepoint which is a url"
> }
> ]
> }
and my services.js looks like this
> angular.module('starter.services', [])
> // For the real endpoint, we'd use this
> .constant('REF', {
> url: 'localhost:8100/api'
> })