lomavuokraus/app/api/health/route.ts
2025-11-24 17:15:20 +02:00

7 lines
201 B
TypeScript

import { NextResponse } from 'next/server';
export const dynamic = 'force-dynamic';
export async function GET() {
return NextResponse.json({ status: 'ok', timestamp: new Date().toISOString() });
}