Files
uldp.edu.vn/app/utils/image.ts
2026-02-03 10:18:53 +07:00

6 lines
171 B
TypeScript

export const imageUrl = (path?: string) => {
if (!path) return "";
if (path.startsWith("http")) return path;
return `${process.env.NEXT_PUBLIC_API_URL}/${path}`;
};