Skip to content

Commit

Permalink
refactor: Improve lazy loading for images in EntryPage and SearchResu…
Browse files Browse the repository at this point in the history
…lts components
  • Loading branch information
bramses committed Sep 24, 2024
1 parent c8015e8 commit 7c63108
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/app/[locale]/(auth)/api/healthz/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// /api/healthz
import { NextResponse } from 'next/server';

export const GET = async (_: Request) => {
return NextResponse.json({
status: 'ok',
});
};

0 comments on commit 7c63108

Please sign in to comment.