ModuleSettings
Was this helpful?
Was this helpful?
component{
function configure( original ){
return {
key : value
};
}
}component{
function configure( original ){
// override only specific keys, not the entire config
original.users.requireEmailVerification = false;
return original;
}
}function development( original ){
// add overides to the original struct
}