(pathname: string)
| 46 | pathname === "/docs" || pathname.startsWith("/docs/"); |
| 47 | |
| 48 | export const isPosthogPath = (pathname: string): boolean => |
| 49 | pathname === POSTHOG_PROXY_PATH || pathname.startsWith(`${POSTHOG_PROXY_PATH}/`); |
| 50 | |
| 51 | /** |
| 52 | * Build the upstream request for an already-classified `/docs` path. Caller |
no outgoing calls
no test coverage detected