mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-04 13:28:13 +02:00
7 lines
237 B
TypeScript
7 lines
237 B
TypeScript
/** Proxy external CCTV URLs through the backend to bypass CORS. */
|
|
export function buildCctvProxyUrl(rawUrl: string): string {
|
|
return rawUrl.startsWith('http')
|
|
? `/api/cctv/media?url=${encodeURIComponent(rawUrl)}`
|
|
: rawUrl;
|
|
}
|