fix(confidence-engine): keep health endpoint public

This commit is contained in:
2026-09-09 10:01:10 +01:00
parent 896851e68d
commit f557175bfb
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { createServerClient } from "@supabase/ssr";
import { NextResponse } from "next/server";
const PUBLIC_PATHS = ["/login", "/auth"];
const PUBLIC_PATHS = ["/login", "/auth", "/api/health"];
export async function middleware(request) {
const pathname = request.nextUrl.pathname;