summaryrefslogtreecommitdiff
path: root/app/lib/image-proxy.ts
blob: b9af3bf077688e9a9284ab331511a3c6e3201780 (plain)
1
2
3
4
export function proxyImageUrl(url: string | null | undefined): string | null {
  if (!url) return null;
  return `/api/image?url=${encodeURIComponent(url)}`;
}