Nico Domino
Nico Domino
@vishnuchandrappan thanks for this update! As you noticed, the deployed example is not the code yuo've edited. For context, we usually have 2 apps for each client/framework in this monorepo....
This is awesome, thanks! 1 request though, can we use runes in the svelte components? I believe I saw bits-ui release a svelte-5 compatible version recently, so shadcn-svelte should be...
> let's merge this and improve the rune thingy later on! @ndom91 Yup, let's do it. Looks like there's still a lock file issue though
Few things to mention here. 1. Can you all include which version of `[email protected].*` you're using? It should be the latest ideally. 2. By default you'll be redirected back to...
Thanks for the quick response all! > https://github.com/nextauthjs/next-auth/blob/1c17b78d54ec32e50f8c83a214ec2fc6df251368/packages/core/src/lib/utils/callback-url.ts#L21 > > It's using the `url.origin` which will not be the url of the users browser when behind a proxy or something...
So I'm doing some digging through the code and I've found the following relevant parts: Regarding the `actionUrl`, i.e. the base URL for all actions like `session`, `callback`, `signIn`, etc....
@kevinmitch14 thanks for the quick video! Can you share that repo? Looks like a nice minimal reproduction.. But yeah, so it looks like the callbackUrl that i mentioned in the...
Basically, that `createAcitonURL` function is the one that generates the `http://localhost:3000/api/auth/callback/credentials` URL that eventually got `POST`ed to toward the beginning of your video, in the failure case. We can see...
@kevinmitch14 so I cloned your repro and was abel to reproduce the same issue as you. It seems that the issue comes from the `
Are you using Next.js middleware in when using v4? Everythign else is the same? It looks like the `req.url` is being reported as `localhost:3000`, no matter what host I'm actually...