mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:58:26 -04:00
22 lines
523 B
TypeScript
22 lines
523 B
TypeScript
import { Geist_Mono as GeistMonoLoader } from "next/font/google";
|
|
|
|
const GeistMono = GeistMonoLoader({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
fallback: [
|
|
// https://github.com/primer/css/blob/4113637b3bb60cad1e2dca82e70d92ad05694399/src/support/variables/typography.scss#L37
|
|
"ui-monospace",
|
|
"SFMono-Regular",
|
|
"'SF Mono'",
|
|
"Menlo",
|
|
"Consolas",
|
|
"'Liberation Mono'",
|
|
"monospace",
|
|
],
|
|
adjustFontFallback: false,
|
|
preload: true,
|
|
variable: "--fonts-mono",
|
|
});
|
|
|
|
export default GeistMono;
|