CLI to build and develop Next.js apps for Cloudflare Pages
### Description previously, cache was on by default. `let posts:any = await fetch('https://domain.com/posts').then((res) => res.json())` Updated method to opt-in for cache as per NEXTjs's [documentation](https://nextjs.org/docs/app/building-your-application/data-fetching/fetching) ``` let posts:any = await fetch('https://domain.com/posts', {cache:"force-cache", next:{ revalidate: 3600//3600=1hr } }).then((res) => res.json()) ``` ### Additional Information Adding the new method causes the fllowing error : ``` "logs": [ { "message": [ "Error: The 'cache' field on 'RequestInitializerDict' is not implemented." ], "level": "error", "timestamp": 1733359252751 } ], ``` ### Would you like to help? - [ ] Would you like to help implement this feature?
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by rohanrehman and has received 0 comments.