satupeta-main/shared/utils/file.ts

10 lines
282 B
TypeScript
Raw Permalink Normal View History

2026-01-27 02:31:12 +00:00
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);
};