Files
JKVideo/utils/imageUrl.ts
Developer 3f82646496 init
2026-03-26 12:15:40 +08:00

12 lines
317 B
TypeScript

/**
* Returns the image URL as-is. Mock data uses https:// picsum.photos URLs
* which don't require proxying or hotlink workarounds.
*/
export function proxyImageUrl(url: string): string {
return url ?? '';
}
export function coverImageUrl(url: string, _quality: 'hd' | 'normal'): string {
return url ?? '';
}