next.js/packages/next/src/client/has-base-path.ts
has-base-path.ts8 lines241 B
import { pathHasPrefix } from '../shared/lib/router/utils/path-has-prefix'

const basePath = (process.env.__NEXT_ROUTER_BASEPATH as string) || ''

export function hasBasePath(path: string): boolean {
  return pathHasPrefix(path, basePath)
}
Quest for Codev2.0.0
/
SIGN IN