I have configured one cron job in my Vercel Hobby Plan project. Despite setting them to run every day at 15 PM UTC and reviewing existing GitHub discussions, the job isn't executing as expected. I need assistance in troubleshooting and resolving this issue.
Current Configuration
{ "crons": [ { "path": "/api/cron", "schedule": "0 15 * * *" } ]}Next.js Version: 14.1.4
The cron is not executing at all

Even when I click on run, NO logs are showed afterwards, what could be happening?

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
- Deployed the project to Vercel using the Hobby Plan.
- Waited for the cron jobs to execute (expected every day at 15 pm).
- Checked Vercel logs and monitored the application, but no cron job executions were observed. Also, no LOGS where present regarding the execution of the cron jobs
OBS: My cronjob files are in the correct folder: scr/app/api/cron and the name of the file is route.ts

