Google Fonts failed fetch
Unanswered
Ratonero Valenciano posted this in #help-forum
Ratonero ValencianoOP
import { Oswald } from 'next/font/google'
import { Questrial } from "next/font/google";
const oswald = Oswald({
weight: '400',
subsets: ['latin']
})
const questrial = Questrial({
weight: '400',
subsets: ['latin']
})Out of no where all of a sudden it fails to fetch Google Font in my code and now it not working
5 Replies
@Ratonero Valenciano js
import { Oswald } from 'next/font/google'
import { Questrial } from "next/font/google";
const oswald = Oswald({
weight: '400',
subsets: ['latin']
})
const questrial = Questrial({
weight: '400',
subsets: ['latin']
})
Out of no where all of a sudden it fails to fetch Google Font in my code and now it not working
probably a preload issue. try adding
preload:false to the font properties and see it it worksRatonero ValencianoOP
that worked, thank you
are you on version 13.3../13.4..? i think the issue has been fixed in the lates 13.5s though
Ratonero ValencianoOP
13.5.3
ah. maybe it’s still an issue then