';
$html .= '';
} else {
// ในโหมด Production เราจะอ่านไฟล์จาก manifest.json ที่ถูก Build แล้ว
$manifestPath = __DIR__ . '/../dist/.vite/manifest.json';
if (file_exists($manifestPath)) {
$manifest = json_decode(file_get_contents($manifestPath), true);
if (isset($manifest[$entry])) {
$file = $manifest[$entry]['file'];
// ตรวจสอบว่ามีไฟล์ CSS ที่ผูกกับ JS ตัวนี้หรือไม่
if (isset($manifest[$entry]['css'])) {
foreach ($manifest[$entry]['css'] as $cssFile) {
$html .= '';
}
}
// โหลดไฟล์ JS หลัก
$html .= '';
}
} else {
$html .= '';
}
}
return $html;
}
?>