How to use Global constants in app configuration constants.
In Constant.js
var ConstantAPI = {
baseUrl: "http://localhost:4200",
}
In appConfiguration.js
(function () {
'use strict';
myModule.constant('appConfiguration', {
getEmployee : ConstantAPI.baseUrl + '/getEmployee',
})();
Error: ConstantAPI is not defined