I have configured two cron jobs in my Vercel project using the Pro plan. Despite setting them to run every minute and reviewing existing GitHub discussions, the jobs are not executing as expected. I need assistance in troubleshooting and resolving this issue.
Current Configuration
{ "crons": [ { "path": "/api/cron/schedule-jobs", "schedule": "* * * * *" }, { "path": "/api/cron/process-jobs", "schedule": "* * * * *" } ]}Next.js Version: 14.2.5
The cron jobs are not executing at all

Steps to Reproduce
- Created a Next.js project and deployed it to Vercel.
- Added the above cron configuration to the project's vercel.json file.
- Implemented the corresponding API routes: /api/cron/schedule-jobs /api/cron/process-jobs
- Deployed the project to Vercel using the Pro plan.
- Waited for the cron jobs to execute (expected every minute and switched to higher ones like every 30mins).
- Checked Vercel logs and monitored the application, but no cron job executions were observed.