Spaces:
Sleeping
Sleeping
File size: 377 Bytes
88be6fd | 1 2 3 4 5 6 7 8 9 10 11 12 | const STORAGE_FOLDER = "data";
export const getStaticFileDataUrl = (filename: string) => {
const isUsingBackend = !!process.env.NEXT_PUBLIC_CHAT_API;
const fileUrl = `/api/${STORAGE_FOLDER}/${filename}`;
if (isUsingBackend) {
const backendOrigin = new URL(process.env.NEXT_PUBLIC_CHAT_API!).origin;
return `${backendOrigin}/${fileUrl}`;
}
return fileUrl;
};
|