kongadmin
Version:
Kong admin GUI
16 lines (14 loc) • 404 B
JavaScript
/**
* Frontend application backend constant definitions. This is something that you must define in your application.
*
* Note that 'BackendConfig.url' is configured in js/app/config/config.json file and you _must_ change it to match
* your backend API url.
*/
(function() {
'use strict';
angular.module('frontend')
.constant('BackendConfig', {
url: ''
})
;
}());