my blog https://overreacted.io
53
fork

Configure Feed

Select the types of activity you want to include in your feed.

trim unused

+11 -11
+11 -11
app/fonts.js
··· 1 - import { Montserrat, Merriweather } from 'next/font/google' 1 + import { Montserrat, Merriweather } from "next/font/google"; 2 2 3 3 export const sans = Montserrat({ 4 - subsets: ['latin'], 5 - display: 'swap', 6 - weight: ['400', '700', '900'], 7 - style: ['normal'], 8 - }) 4 + subsets: ["latin"], 5 + display: "swap", 6 + weight: ["900"], 7 + style: ["normal"], 8 + }); 9 9 10 10 export const serif = Merriweather({ 11 - subsets: ['latin'], 12 - display: 'swap', 13 - weight: ['400', '700'], 14 - style: ['normal', 'italic'], 15 - }) 11 + subsets: ["latin"], 12 + display: "swap", 13 + weight: ["400", "700"], 14 + style: ["normal", "italic"], 15 + });