add ZERO_MUTATE_URL and no-op mutate endpoint for zero-cache auth passthrough

This commit is contained in:
CREDO23 2026-03-24 16:25:13 +02:00
parent 0e49cc33f8
commit 5c98f1c717
4 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export async function POST() {
return NextResponse.json([]);
}