rsnext/examples/cloudflare-turnstile/next.config.js
Hong-Kuan Wu 9b106db25a
add Cloudflare Turnstile example (#41283)
## Description
close #41110 

## Documentation / Examples

- [x] Make sure the linting passes by running `pnpm lint`
- [x] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-10-12 12:56:37 +00:00

10 lines
138 B
JavaScript

module.exports = {
async rewrites() {
return [
{
source: '/',
destination: '/implicit',
},
]
},
}