()
| 6 | export const revalidate = 0 |
| 7 | |
| 8 | export async function GET() { |
| 9 | const stats = await getFreebuffLiveStats() |
| 10 | return NextResponse.json(stats, { |
| 11 | headers: { |
| 12 | 'Cache-Control': |
| 13 | 'public, max-age=0, s-maxage=60, stale-while-revalidate=30', |
| 14 | }, |
| 15 | }) |
| 16 | } |
nothing calls this directly
no test coverage detected