UNPKG

dg-npm-templates

Version:

Npx generator for react app dependency creation by digite

20 lines (15 loc) 486 B
const properties = { /* NOTE: Data pf properties will be applied here from AppProps.json, so if u want to change any value change in AppProps.json file Not Here, Do not edit anything in this file*/ configURL: undefined, //this will be changed in each source product for App Data, isIntegrated: false, baseURL: "" }; export const setProperties = config => { if ( config ) { for ( const key in config ) { properties[key] = config[key]; } } } export default properties;