17 lines
858 B
Markdown
17 lines
858 B
Markdown
# F-119 — Fix font URL case-sensitivity + reiniciar frontend
|
|
|
|
## Bug
|
|
La regla `@font-face` apuntaba a `/fonts/Almagro.woff2` (mayúscula) pero el archivo está como `almagro.woff2` (minúscula). En filesystems case-sensitive falla. Aparte, el proceso frontend había quedado con chunks viejos después de un rebuild previo.
|
|
|
|
## Cambios
|
|
- `frontend/src/app/globals.css`: `Almagro.woff2` → `almagro.woff2`, `Almagro.ttf` → `almagro.ttf`.
|
|
- Rebuild frontend (`npm run build`).
|
|
- Matar el proceso frontend que servía BUILD_ID antiguo y reiniciar `next start` (PID 85615).
|
|
|
|
## Verificación
|
|
- `almagro.woff2` → 200
|
|
- `almagro.ttf` → 200
|
|
- chunks CSS/JS → 200
|
|
- `/products` → 200 (404 dentro de la página porque no existe todavía, pero la página /_not-found renderiza con el font correcto).
|
|
- Página `/` → 200 con las categorías en español.
|