7 lines
114 B
Plaintext
7 lines
114 B
Plaintext
|
'use strict';
|
||
|
|
||
|
module.exports = function(app, callback) {
|
||
|
process.bootFlags.push('customjs2');
|
||
|
callback();
|
||
|
};
|