Cron in Next.js / Vercel

Vercel crons run in UTC and, on the Hobby plan, at most once a day. For anything more frequent call the route from Supercrontab. Below, every schedule with a Next.js / Vercel example you can paste.

// vercel.json
{
  "crons": [
    { "path": "/api/cron/run", "schedule": "*/5 * * * *" }
  ]
}