import { type NextMiddleware, NextResponse } from "next/server" import { handleDTMC } from "@/constants/routes/dtmc" import type { MiddlewareMatcher } from "@/types/middleware" export const middleware: NextMiddleware = () => { return NextResponse.next() } export const matcher: MiddlewareMatcher = (request) => { return handleDTMC.includes(request.nextUrl.pathname) }