getAppConfig
Returns
Example
import lampix from '@lampix/core';
const initialize = (config) => {
// do something with the data in config.json
};
lampix.getAppConfig()
.then((config) => {
initialize(config);
});Notes
Last updated
Was this helpful?