react-code-dataset / next.js /test /e2e /app-dir /actions /app /no-caching-in-actions /revalidate /actions.js
| 'use server' | |
| export async function getNumber() { | |
| const res = await fetch( | |
| 'https://next-data-api-endpoint.vercel.app/api/random?no-caching-actions', | |
| { | |
| next: { | |
| revalidate: 100, | |
| }, | |
| } | |
| ) | |
| return res.text() | |
| } | |