W5.1 hotfix: Fraunces must be variable when using axes (next/font)
Some checks failed
CI / Web — typecheck + lint + build (push) Failing after 39s
CI / Scripts — Python smoke (push) Failing after 4s
CI / Web — npm audit (push) Failing after 32s
CI / Retrieval — golden set (Recall@5 + MRR) (push) Failing after 3s

This commit is contained in:
Luiz Gustavo 2026-05-24 14:11:11 -03:00
parent ab4fe2a334
commit c40d1b58a0

View file

@ -9,7 +9,8 @@ const mono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono" });
const fraunces = Fraunces({ const fraunces = Fraunces({
subsets: ["latin"], subsets: ["latin"],
variable: "--font-display", variable: "--font-display",
weight: ["400", "600", "700", "900"], // No explicit `weight` → next/font treats this as a variable font and
// exposes the full weight range via CSS. `axes` requires variable mode.
axes: ["SOFT", "WONK"], axes: ["SOFT", "WONK"],
}); });