10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
import { NextResponse } from "next/server"
|
|
|
|
export default function middleware() {
|
|
return NextResponse.next()
|
|
}
|
|
|
|
export const config = {
|
|
matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"],
|
|
}
|