Next.js app makes a network request to http://fonts.googleapis.com/css?family=Lato
Unanswered
Transvaal lion posted this in #help-forum
Transvaal lionOP
I am using google font Inter which I loaded using
import { Inter } from 'next/font/google'. But viewing the network tab, I can see the app is making a request to Lato font first. Is this because of using Google Fonts?7 Replies
@Transvaal lion I am using google font Inter which I loaded using `import { Inter } from 'next/font/google'`. But viewing the network tab, I can see the app is making a request to Lato font first. Is this because of using Google Fonts?
your UI library is probably shipping Lato as well.
next/font/google doesn't send requests to Google servers on the client-sidebesides, we are using Inter, so why would
next/font download Lato, right?Transvaal lionOP
could it be because it is loading an initial font and then the inter? it is making this request
and I searched my entire project and no lato
I use redix ui
no, it doesn't send any requests to google servers. make a reproduction repository