您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
471 B

  1. 'use strict';
  2. /**
  3. * Cron config that gives you an opportunity
  4. * to run scheduled jobs.
  5. *
  6. * The cron format consists of:
  7. * [SECOND (optional)] [MINUTE] [HOUR] [DAY OF MONTH] [MONTH OF YEAR] [DAY OF WEEK]
  8. *
  9. * See more details here: https://strapi.io/documentation/developer-docs/latest/setup-deployment-guides/configurations.html#cron-tasks
  10. */
  11. module.exports = {
  12. /**
  13. * Simple example.
  14. * Every monday at 1am.
  15. */
  16. // '0 1 * * 1': () => {
  17. //
  18. // }
  19. };