11 lines
251 B
TypeScript
11 lines
251 B
TypeScript
import { NextResponse } from "next/server";
|
|
import type { NextRequest } from "next/server";
|
|
|
|
export function middleware(_req: NextRequest) {
|
|
return NextResponse.next();
|
|
}
|
|
|
|
export const config = {
|
|
matcher: ["/((?!_next|static|favicon.ico).*)"],
|
|
};
|