NuxtN
Nuxt2y ago
4 replies
takburger

How to run nitro task on cloudflare ?

I have deployed a site on cloudflare using nuxt hub. I have on it a task, specified to run every hour.
However I realized that task isn't triggered on production on cloudflare.

Here is my config on nuxt.config.ts :
nitro: {
    experimental: {
      // Enable Server API documentation within NuxtHub
      openAPI: true,
      tasks: true,
    },
    scheduledTasks: {
      "0 * * * *": "news:update",
    },
  },
Was this page helpful?