From 13e17a7b1247957f538e16f41ebc822b8265158d Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Sat, 29 Nov 2025 13:38:34 -0600 Subject: [PATCH] fix: Corregir path case-sensitive para Linux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit El path a critical-bootstrap.css usaba 'css' (minúscula) pero el directorio real es 'Css' (mayúscula). Esto causaba que el CSS crítico no se cargara en producción (Linux es case-sensitive). Bug encontrado: El CriticalBootstrapService no inyectaba el CSS en producción porque file_exists() retornaba false. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Shared/Infrastructure/Services/CriticalBootstrapService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Infrastructure/Services/CriticalBootstrapService.php b/Shared/Infrastructure/Services/CriticalBootstrapService.php index ccbcb001..929d1222 100644 --- a/Shared/Infrastructure/Services/CriticalBootstrapService.php +++ b/Shared/Infrastructure/Services/CriticalBootstrapService.php @@ -47,7 +47,7 @@ final class CriticalBootstrapService */ private function __construct() { - $this->cssFilePath = get_template_directory() . '/Assets/css/critical-bootstrap.css'; + $this->cssFilePath = get_template_directory() . '/Assets/Css/critical-bootstrap.css'; } /**