dg-npm-templates
Version:
Npx generator for react app dependency creation by digite
18 lines (13 loc) • 335 B
JavaScript
import properties from "../properties";
const localURLs = {
GET_NAVIGATION_DATA: "data/navigation/NavigationData.json"
}
const liveURLs = {
}
export const getURL = key => {
if ( properties.isIntegrated ) {
return liveURLs[key];
} else {
return `${ properties.contextPath }/${ localURLs[key] }`;
}
}