(pathname: string)
| 16 | export const isApiPath = (pathname: string) => pathname === "/api" || pathname.startsWith("/api/"); |
| 17 | |
| 18 | export const isAppOwnedPath = (pathname: string) => |
| 19 | isApiPath(pathname) || classifyMcpPath(pathname) !== null; |
| 20 | |
| 21 | // --------------------------------------------------------------------------- |
| 22 | // Which plane serves an app-owned path: the Effect app directly, or TanStack |
no test coverage detected