mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 11:01:45 +00:00
Next.js self-hosta a Inter em build time — elimina os arquivos .woff2 do repositório e a dependência de localFont. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
201 B
TypeScript
10 lines
201 B
TypeScript
import { Inter } from "next/font/google";
|
|
|
|
export const inter = Inter({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
variable: "--font-inter",
|
|
fallback: ["ui-sans-serif", "system-ui"],
|
|
preload: true,
|
|
});
|