5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
export function proxyImage(url: string | null | undefined): string | undefined {
|
|
if (!url) return undefined;
|
|
return `/image-proxy?url=${encodeURIComponent(url)}`;
|
|
}
|