From af16230cf9a1b1d7969ea25bb41e8bde371f43e2 Mon Sep 17 00:00:00 2001 From: FrankZamora Date: Wed, 26 Nov 2025 23:19:10 -0600 Subject: [PATCH] fix: corregir rutas case-sensitive para Linux MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Renombrar Assets/Vendor/Fonts → fonts (Bootstrap Icons CSS espera lowercase) - Corregir path del preload en performance.php: Vendor/Bootstrap/Css (PascalCase) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Assets/Vendor/{Fonts => fonts}/bootstrap-icons.woff | Bin .../Vendor/{Fonts => fonts}/bootstrap-icons.woff2 | Bin Inc/performance.php | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename Assets/Vendor/{Fonts => fonts}/bootstrap-icons.woff (100%) rename Assets/Vendor/{Fonts => fonts}/bootstrap-icons.woff2 (100%) diff --git a/Assets/Vendor/Fonts/bootstrap-icons.woff b/Assets/Vendor/fonts/bootstrap-icons.woff similarity index 100% rename from Assets/Vendor/Fonts/bootstrap-icons.woff rename to Assets/Vendor/fonts/bootstrap-icons.woff diff --git a/Assets/Vendor/Fonts/bootstrap-icons.woff2 b/Assets/Vendor/fonts/bootstrap-icons.woff2 similarity index 100% rename from Assets/Vendor/Fonts/bootstrap-icons.woff2 rename to Assets/Vendor/fonts/bootstrap-icons.woff2 diff --git a/Inc/performance.php b/Inc/performance.php index 1481a100..8439cf7e 100644 --- a/Inc/performance.php +++ b/Inc/performance.php @@ -333,7 +333,7 @@ function roi_preload_critical_resources() { // No se necesita preload de fuentes locales // Preload del CSS de Bootstrap (crítico para el layout) - $bootstrap_css = get_template_directory_uri() . '/Assets/vendor/bootstrap/css/bootstrap.min.css'; + $bootstrap_css = get_template_directory_uri() . '/Assets/Vendor/Bootstrap/Css/bootstrap.min.css'; printf( '' . "\n", esc_url( $bootstrap_css )