next.js/test/e2e/app-dir/actions/app/no-caching-in-actions/force-cache/actions.js
actions.js13 lines223 B
'use server'

export async function getNumber() {
  const res = await fetch(
    'https://next-data-api-endpoint.vercel.app/api/random?no-caching-actions',
    {
      cache: 'force-cache',
    }
  )

  return res.text()
}
Quest for Codev2.0.0
/
SIGN IN