turnstile icon indicating copy to clipboard operation
turnstile copied to clipboard

Feature Request: Automatic Retry on Failure

Open XStarlink opened this issue 7 months ago â€ĸ 0 comments

🆒 Your use case

Problem

When Turnstile fails due to network issues or timeouts, users get stuck without any retry mechanism.

Use Case

Improve UX for users with unstable networks or when Cloudflare has temporary issues.

🆕 The solution you'd like

Proposed Solution

Add retry configuration:

// nuxt.config.ts
turnstile: {
  siteKey: 'xxx',
  retries: {
    enabled: true,
    maxAttempts: 3,
    backoff: 'exponential' // or 'linear'
  }
}

🔍 Alternatives you've considered

No response

â„šī¸ Additional info

No response

XStarlink avatar Sep 12 '25 09:09 XStarlink