Add HealthPage component foAdd health page for route-level health checkr service health check

This commit is contained in:
Alexa Amundson
2025-11-19 14:55:09 -06:00
committed by GitHub
parent a3e261c371
commit 459a5b8b6a

13
src/app/health/page.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { getStaticServiceHealth } from '@/lib/config';
export const revalidate = 0;
export default async function HealthPage() {
const health = await getStaticServiceHealth();
return (
<div>
<h1>Health Check</h1>
<pre>{JSON.stringify(health, null, 2)}</pre>
</div>
);
}