File size: 504 Bytes
cd8bd0a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * /auth/callback — OAuth callback endpoint for providers that use the
 * `/auth/callback` path (Windsurf, Devin CLI PKCE flow).
 *
 * Reuses the same logic as /callback:
 *  - postMessage to opener (popup mode)
 *  - BroadcastChannel (same-origin tabs)
 *  - localStorage fallback
 *
 * On true localhost the random-port callback server intercepts this path first,
 * so this page is only reached in the LAN / popup-without-callback-server case.
 */
export { default } from "@/app/callback/page";