next.js/packages/next/src/server/lib/match-next-data-pathname.ts
match-next-data-pathname.ts10 lines281 B
import { getPathMatch } from '../../shared/lib/router/utils/path-match'

const matcher = getPathMatch('/_next/data/:path*')

export function matchNextDataPathname(pathname: string | null | undefined) {
  if (typeof pathname !== 'string') return false

  return matcher(pathname)
}
Quest for Codev2.0.0
/
SIGN IN