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