Hannes Bornö
Hannes Bornö
@kdy1 Thank you for the review, and the link!
If available use a variable font instead. E.g. `Roboto Flex`. ```tsx import { Roboto_Flex } from '@next/font/google' const roboto = Roboto_Flex({ subsets: ['latin'] }) ``` Support for multiple weights for...
Multiple weights and styles are now available in `13.0.1`. Docs are being worked on to reflect the latest updates. ```tsx // google const fira = Fira_Code({ weight: ["400", "700"] })...
@ijjk added telemetry tests in `e2e/next-font`, it was needed because the telemetry-plugin expects it to be in the `@next/font` package and not part of the monorepo.
The reason is that the `app-build-manifest.json` is empty when using a `src` dir. When using a `src` dir the `entrypoint.name` gets named `src/app/page` here https://github.com/vercel/next.js/blob/canary/packages/next/build/webpack/plugins/build-manifest-plugin.ts#L198, which cuases the regex in...
@ijjk looks good to me!