loopback-boot/test/fixtures/simple-app/boot/custom.customjs

7 lines
113 B
Plaintext
Raw Normal View History

2017-03-23 18:13:37 +00:00
'use strict';
module.exports = function(app, callback) {
process.bootFlags.push('customjs');
callback();
};