UNPKG

@appwarden/middleware

Version:

Instantly disable all user interaction with your app deployed on Cloudflare or Vercel

10 lines (8 loc) 199 B
// src/utils/to-next-response.ts import { NextResponse } from "next/server"; var toNextResponse = (response) => { return new NextResponse(response.body, response); }; export { toNextResponse };