fix(web): add cheap health probe endpoint
All checks were successful
CD Pipeline / tests (push) Successful in 1m30s
Code Review / ai-code-review (push) Successful in 12s
CD Pipeline / build-and-deploy (push) Successful in 4m34s
CD Pipeline / post-deploy-checks (push) Successful in 1m32s

This commit is contained in:
Your Name
2026-05-31 19:10:31 +08:00
parent fb9e8bffa6
commit 56c8a41e5b
3 changed files with 56 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
import { NextResponse } from 'next/server';
export const dynamic = 'force-dynamic';
export async function GET() {
return NextResponse.json({
status: 'ok',
service: 'awoooi-web',
});
}