turnstile
turnstile copied to clipboard
Feature Request: Automatic Retry on Failure
đ 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