Files
anyclip-video-manager/client/has-base-path.ts
2026-01-20 14:34:18 +08:00

8 lines
241 B
TypeScript

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)
}