From b69df2454e40e1a119177aac752acda1599b4a1f Mon Sep 17 00:00:00 2001 From: nico Date: Thu, 5 Feb 2026 14:29:44 +0800 Subject: [PATCH] Fix Coba lagi image stagging --- prisma/lib/create_file_share_folder.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/prisma/lib/create_file_share_folder.ts b/prisma/lib/create_file_share_folder.ts index fa55ba78..025d0490 100644 --- a/prisma/lib/create_file_share_folder.ts +++ b/prisma/lib/create_file_share_folder.ts @@ -227,7 +227,8 @@ export async function getAllPublicCdnUrls(): Promise { return items .filter((item) => item.type === "file") .map((file) => { - const path = `${DIR_TARGET}/${file.name}`; + // const path = `${DIR_TARGET}/${file.name}`; + const path = `/${file.name}`; return { name: file.name, path,