Manuel Bustillo b1339e2ce9
All checks were successful
Playwright Tests / test (pull_request) Has been skipped
Add copyright notice / copyright_notice (pull_request) Successful in 22s
Check usage of free licenses / build-static-assets (pull_request) Successful in 35s
Define a health endpoint for docker compose
2024-12-28 11:45:22 +01:00

5 lines
102 B
TypeScript

import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json({});
}