next.js/test/e2e/app-dir/use-cache/app/(partially-static)/api/route.ts
route.ts9 lines227 B
import { getCachedRandomWithTag } from 'my-pkg'

export async function GET() {
  const rand1 = await getCachedRandomWithTag('api')
  const rand2 = await getCachedRandomWithTag('api')

  return Response.json({ rand1, rand2 })
}
Quest for Codev2.0.0
/
SIGN IN