(baseUrl: string)
| 188 | } |
| 189 | |
| 190 | function buildDebugUrl(baseUrl: string): string { |
| 191 | return `${baseUrl}${config.endpoint}`; |
| 192 | } |
| 193 | |
| 194 | let server: ReturnType<typeof Bun.serve> | null = null; |
| 195 | let tunnel: { url: string; close: () => Promise<void> } | null = null; |