Hannes Bornö
Hannes Bornö
If `@next/font/google` fails to fetch the font in DEV, return the fallback font instead of throwing so you still can run the app. In build it still throws. ## Bug...
Fix wrong links. Add specific error message if Next.js version < 13. ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added -...
Similar to https://github.com/vercel/next.js/pull/42106. Make `@next/font` works as expected when using `transpileModules`. Also makes sure `@next/font` is auto-configured correctly when in a monorepo. ## Bug - [ ] Related issues linked...
Fixes: #42587 ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have a helpful link attached, see `contributing.md`...
The fix in #42793 added an unnecessary step by returning a new async function when the result is a promise. We only have to make sure we don't get an...
When building (`next/build/index.ts`) files ending with `page.js` got picked up by the RegEx which meant files like `not-a-page.js` ended up as a page. This change makes sure the segment actually...
[`href`interpolation](https://nextjs.org/docs/api-reference/next/link#with-url-object) is [not supported](https://github.com/vercel/next.js/issues/42715#issuecomment-1315018892) in the new router. The new router always use the query object to set [search params](https://beta.nextjs.org/docs/api-reference/components/link#href) on the URL. This PR adds a DEV error if...