File size: 110 Bytes
1e92f2d |
1 2 3 4 5 6 |
export const dynamic = 'force-static'
export async function GET() {
return Response.json({ answer: 42 })
}
|
1e92f2d |
1 2 3 4 5 6 |
export const dynamic = 'force-static'
export async function GET() {
return Response.json({ answer: 42 })
}
|