Files
dalcode-website/middleware.ts
T
2026-04-29 10:36:24 +08:00

10 lines
192 B
TypeScript

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