This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
359 B
TypeScript
Raw Normal View History

2024-09-08 22:35:32 +01:00
import { config } from "../../../config";
/**
* Proxies all non-localhost images to make them load faster.
*
* @param originalUrl the original image url
* @returns the new image url
*/
export function getImageUrl(originalUrl: string) {
return `${!config.siteUrl.includes("localhost") ? "https://img.fascinated.cc/upload/q_70/" : ""}${originalUrl}`;
}