Troubleshooting Nuxt 3 Build Issues on netlify-edge ISR: Excessive 503 Errors with medium page counts but in locale works

Hi,
I found the solution I thinks.
I use the Nitro prerender and I think the values of the configuration was wrong:
So I update the delay and the retry and it works:

export default {
  nitro: {
    routeRules: {
      '/**': { isr: true },
    },
    // https://nitro.unjs.io/config/#prerenderer
    prerender: {
      autoSubfolderIndex: true,
      concurrency: 1,
      interval: 2,
      failOnError: false,
      crawlLinks: true,
      ignore: [],
      routes: [],
      retries: 4,
      retryDelay: 1000,
    },
    // https://nitro.unjs.io/deploy/providers/netlify
    preset: 'netlify-edge',
  },
}```

Regards,
Davide