ScriptConfig.js 377 B

12345678910111213
  1. export const Config = {
  2. preheat: ['@cosmic/bos-framework/@env/preheat'],
  3. debug: false,
  4. logConfig: function () {
  5. if (this.debug) {
  6. console.log('启用调试模式运行脚本...');
  7. }
  8. else {
  9. console.log('启用正常模式运行脚本...');
  10. }
  11. console.log("引擎预热脚本: ", this.preheat);
  12. }
  13. };