From e7e673176be5334536344e7665bbb78b384724b2 Mon Sep 17 00:00:00 2001 From: cartermp Date: Tue, 24 Mar 2026 14:10:33 -0700 Subject: [PATCH] moar --- src/app/api/health/route.ts | 3 +++ src/proxy.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 src/app/api/health/route.ts diff --git a/src/app/api/health/route.ts b/src/app/api/health/route.ts new file mode 100644 index 0000000..1d77bf9 --- /dev/null +++ b/src/app/api/health/route.ts @@ -0,0 +1,3 @@ +export function GET() { + return new Response("ok", { status: 200 }); +} diff --git a/src/proxy.ts b/src/proxy.ts index c2c869f..de5ce7d 100644 --- a/src/proxy.ts +++ b/src/proxy.ts @@ -1,5 +1,5 @@ export { auth as proxy } from "@/auth"; export const config = { - matcher: ["/((?!api/auth|_next/static|_next/image|favicon\\.ico|login).*)"], + matcher: ["/((?!api/auth|api/health|_next/static|_next/image|favicon\\.ico|login).*)"], }; -- 2.51.2