next-intl
next-intl copied to clipboard
With i18n routing doesn't work with Next Canary (React 19)
Description
I have taken the example code from example-app-router-next-auth that has the With i18n Routing setup; and tried to use latest Next canary (18.3.0-canary.70 at the time of writing this) with React 19 RC in order to test both that and the new React compiler.
There seems to be an issue with React 19, as the application fails to run, even without trying the React compiler.
Without turbo it shows the following error.
With turbo, instead shows this error.
I have made another branch where I have follow the documentation for Without i18n routing. This removes the [locale], navigation.ts and use of next-intl middleware on middleware.ts. With these changes the application runs perfectly fine both with/without turbo and the react compiler.
Verifications
- [X] I've verified that the problem I'm experiencing isn't covered in the docs.
- [X] I've searched for similar, existing issues on GitHub and Stack Overflow.
- [X] I've compared my app to a working example to look for differences.
Mandatory reproduction URL
https://github.com/Aralf/next-intl-react-19-compiler
Reproduction description
Steps to reproduce:
- Run
next devwith or without turbo - It will not work, in both cases throws different errors.
- There is no need for trying React compiler as it already fails.
- Change to branch
without-i18n-routing - React compiler is already enabled on next.config.mjs
- Run
next devwith or without turbo - It works woks for all cases
Expected behaviour
It should work for both the With i18n routing and the Without i18n routing setups.
Hmm, that's interesting. The Next.js 15 release is scheduled for next week as far as I know, maybe worth waiting until then. It might be that they're still ironing out some details.
Once Next.js 15 is out, I'll open a PR to update all examples and will make sure everything works as expected.
@amannn I see, thanks.
Just as and added note, this morning I tried with my company app (where I first faced this issue) and tried the setup without i18n routing. It did work with Webpack but once I tried with Turbopack it threw the same error described above.
The app uses some other dependencies than the reproduction provided here: shadcn ui (Tailwind + Radix) and Authjs v5 beta are the only difference on the frontend part (it has some server side dependencies that I believe shouldn't affect anything with react).
can confirm this issue. reproduced the same error on my project.
Able to reproduce it here as well. As mentioned by @amannn, probably worth waiting until next 15 is launched this week until further investigation.
Hi, I just tried to update to Next.js 15 RC and it crashes with:
⨯ ../src/shared/lib/router-context.shared-runtime.ts (4:8) @ <unknown>
⨯ react__WEBPACK_IMPORTED_MODULE_0__.createContext is not a function
2 | import type { NextRouter } from './router/router'
3 |
> 4 | export const RouterContext = React.createContext<NextRouter | null>(null)
| ^
5 |
6 | if (process.env.NODE_ENV !== 'production') {
7 | RouterContext.displayName = 'RouterContext'
⚠ ./node_modules/next-intl/dist/esm/navigation/shared/BaseLink.js
This is the error I got:
./node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/next-intl/dist/esm/navigation/shared/BaseLink.js
Attempted import error: 'useState' is not exported from 'react' (imported as 'i').
Import trace for requested module:
./node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/next-intl/dist/esm/navigation/shared/BaseLink.js
./node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/next-intl/dist/esm/navigation/react-server/ServerLink.js
./node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/next-intl/dist/esm/navigation/react-server/createSharedPathnamesNavigation.js
./node_modules/.pnpm/[email protected][email protected][email protected]/node_modules/next-intl/dist/esm/navigation.react-server.js
I've just upgraded two examples in https://github.com/amannn/next-intl/pull/1089 to Next.js 15 RC and React 19 RC. Generally this seems to work, but it looks like the issue you are seeing comes from https://github.com/vercel/next.js/pull/65424.
Currently in the docs we suggest to import i18n config from ./navigation into the middleware, where also navigation APIs are defined. These navigation APIs import from next/link in turn, which results in the errors you're seeing.
For the time being you can fix this by making sure you're not importing anything from the navigation module into the middleware (see https://github.com/amannn/next-intl/pull/1089/commits/b7469596d953f113e6f63a57f749db341f817f68).
I've asked the Next.js team for clarification if we should adjust the docs here.
Side note for those living on the bleeding edge: The test suite from next-intl discovered that serving sitemaps might be broken in Next.js 15 RC (see https://github.com/vercel/next.js/pull/65507#issuecomment-2128974838)
I've just upgraded two examples in #1089 to Next.js 15 RC and React 19 RC. Generally this seems to work, but it looks like the issue you are seeing comes from vercel/next.js#65424.
Currently in the docs we suggest to import i18n config from
./navigationinto the middleware, where also navigation APIs are defined. These navigation APIs import fromnext/linkin turn, which results in the errors you're seeing.For the time being you can fix this by making sure you're not importing anything from the navigation module into the middleware (see b746959).
I've asked the Next.js team for clarification if we should adjust the docs here.
Cheers, moved them to a separate file for now, works excellently!
I've just upgraded two examples in #1089 to Next.js 15 RC and React 19 RC. Generally this seems to work, but it looks like the issue you are seeing comes from vercel/next.js#65424.
Currently in the docs we suggest to import i18n config from
./navigationinto the middleware, where also navigation APIs are defined. These navigation APIs import fromnext/linkin turn, which results in the errors you're seeing.For the time being you can fix this by making sure you're not importing anything from the navigation module into the middleware (see b746959).
I've asked the Next.js team for clarification if we should adjust the docs here.
Thanks, that is clearly the issue. I have made the change on my reproduction with i18n navigation and it works.
Funny enough, I checked on my company app and noticed that in there I had already separated in two files the locales configuration and the navigation, and never imported navigation to the middleware. So it shouldn't have failed....unless the issue is somewhere else.
Well, turns out Auth.js v5 has the same issue. My reproduction uses v4 as that is the same from next-intl examples. I tested to upgrade to v5 and voilà, again the same error. I suppose I will have to open an issue on next-auth now 😅
Thanks again @amannn for finding the root of the issue.
I've been pointed out here latest Next canary includes this fix that resolves all these issues caused by https://github.com/vercel/next.js/pull/65424 I've tested it on the reproduction and sure enough no more issues.
I'm using getPathname on middleware to translate some routes.
Since getPathname is exported by next-intl/navigation would be nice to have something that work only on SSR (middleware and API routes).
Breaking change in [v15.0.0-canary.171] change : (https://github.com/vercel/next.js/releases/tag/v15.0.0-canary.171)
@makoveckib Yep, I've written a detailed analysis about this in https://github.com/amannn/next-intl/issues/1375 and a canary release is already available with the relevant changes if someone wants to test it: https://github.com/amannn/next-intl/pull/1391.
sill getting warnings: In route /[locale] a header property was accessed directly with
headers().get('X-NEXT-INTL-LOCALE').headers()should be awaited before using its value. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis
"next-intl": "^3.21.0-canary.0", "next": "^15.0.0-canary.176",
There’s some minimal migration necessary if you want to get rid of the warnings, please refer to the linked PRs in the release PR.
I just gave Next.js 15 RC 2 a shot, and while some things have improved, it seems like there is still a bug on their end: https://github.com/vercel/next.js/issues/69000#issuecomment-2416459189. So be careful if you decide to upgrade to it.
Apart from that, be careful when running the codemod for transforming pages that access params and searchParams. I noticed the codemod transforms pages to async when they use hooks like useTranslations—this will break them.
Before:
export default function Page(props) {
const searchParams = props.searchParams;
const t = useTranslations('Page')
// ...
}
Broken after codemod:
export default async function Page(props) {
const searchParams = await props.searchParams;
const t = useTranslations('Page')
// ...
}
Fixed:
import {use} from 'react';
// (no async)
export default function Page(props) {
const searchParams = use(props.searchParams);
const t = useTranslations('Page')
// ...
}
See also the notes in https://github.com/vercel/next.js/pull/68812. The recently released eslint-plugin-react-hooks@5 will also warn for this.
Thanks for your efforts, @amannn? If we want to make the switch, should we use the latest canary on npm 0.0.0-canary-0ea6000 or 3.22.0-canary.1 or how do we install it?
@wottpal Yep, that's the latest one! If you install next-intl@canary that should always give you the most recent one.
Regarding 3.22.0-canary.1: That's a slightly outdated one, I had to adapt the canary publishing process due to some problems with Lerna recently which resulted in a new versioning scheme.
Ty! Got everything running smoothly on v15 🚀
Update: I'll wait with updating docs and examples for Next.js 15 for the time being since there's a critical bug in Next.js 15 that affects multilingual apps that use i18n routing.
However, I've added a separate PR that merely bumps the peer dependency: https://github.com/amannn/next-intl/pull/1443. If you don't use i18n routing or don't rely on alternate links, you can consider updating already.
hi @amannn! Thanks for your great job on all this stuff and a question on your last mention above, regarding "...there's a critical bug in Next.js 15...":
Are the docs updated now, or are we still waiting for the solution on this bug?
Or more precise :) ...is it suggested to still wait for upgrading when I need to use i18n routing, or is it now possible to upgrade to 3.22 using the current docs, so that it will work without errors when implemented as described in the current docs?
next-intl can surely be updated to the latest version, I only found that Next.js 15 has a bug with alternate links (see above).
Additionally, I found this one the other day: https://github.com/vercel/next.js/issues/71623. That’s not really related to next-intl though, rather a general bug and might not affect your app.
I’ll update the examples and docs in this repo once the bug with alternate links is fixed.