config.prod.js 331 B

1234567891011121314
  1. 'use strict';
  2. module.exports = () => {
  3. const config = (exports = {});
  4. // 可操作范围的根目录
  5. config.dirRoot = 'D:\\free';
  6. // 检查的盘符
  7. config.checkDrive = 'D:';
  8. // 占用空间警告线
  9. config.redLine = 80; // 百分制
  10. // 邮件接收人
  11. config.receiver = '1345526645@qq.com';
  12. return config;
  13. };