UNPKG

next-compose-middleware

Version:

`next-compose-middleware` is a library that simplifies building complex, declarative middleware for Next.js applications. It allows you to create highly readable and maintainable middleware by composing multiple functions together.

4 lines (3 loc) 145 B
import { NextRequest, NextResponse } from 'next/server'; export declare type Request = NextRequest; export declare type Response = NextResponse;