satupeta-main/shared/utils/file.ts
2026-02-23 12:21:05 +07:00

10 lines
282 B
TypeScript
Executable File

const API_URL = process.env.NEXT_PUBLIC_API_URL || "http://localhost:8000";
export const getFileUrl = (fileId: string): string => {
return `${API_URL}/files/${fileId}/download`;
};
export const getFileThumbnailUrl = (fileId: string): string => {
return getFileUrl(fileId);
};