Adriano Raiano

Results 751 comments of Adriano Raiano

fyi: https://github.com/i18next/i18next-http-backend/issues/158

> It would be nice for this to have been a major version change, since it's breaking (even though the fix is trivial). But thank you for making it easy...

v2.7.0 has now been deprecated and v3.0.0 was released

> > v2.7.0 has now been deprecated and v3.0.0 was released > > This didn't solve the problem @smman89 have you read the changelog? ``` fix for Deno 2 and...

> why was this PR closed? because of [this](https://github.com/i18next/i18next-http-backend/pull/144#issuecomment-2488583774) tldr; we will not remove cross-fetch and XMLHttpRequest for now, if you only want to use the in-built native fetch, use...

Probably same story like https://github.com/i18next/i18next-http-backend/issues/154 Probably the resources loading is failing (and was already failing before), but now it retries a couple of times before finishing the init call....

You may need to change the middleware.ts to your needs... maybe a rewrite instead of a redirect is already sufficient? ```diff - return NextResponse.redirect(new URL(`/${lng}${req.nextUrl.pathname}${req.nextUrl.search}`, req.url)) + return NextResponse.rewrite(new URL(`/${lng}${req.nextUrl.pathname}${req.nextUrl.search}`,...

Then you have some other issue... if you do it here: https://github.com/i18next/next-app-dir-i18next-example-ts it works. btw: these are Next.js specific questions... and what I've done here is just an example of...

Can you check how the original aws lambda event looks like and then open a new PR by creating a dedicated test for this and providing the appropriate fix?