session cookie not setting after signup
Hey folks here is the link to my current auth setup https://mystb.in/5609e26466b88cb244 I don't know why after I signup the session cookie is not setting session is creating in database
10 Replies
Are you testing this on localhost or production?
Normally we save secure cookies only on production, so localhost doesn't have secure cookies. Not sure if that could relate to anything, but just throwing it out there
localhost
@Aditya Kirad Your
actions/auth.ts
is the same as signup.tsx
my bad in hurry I pasted the same code here is the action code
Hmm. I'm not too sure why this is happening.
Then I think it's better for me to roll my own auth just like I used to do in Remix
I chose better-auth already comes with credentials based auth and with next-auth I have customize it very much to get same functionality
remove
useSecureCookies: true
ande default cookie attirbutes as wellcan you please tell why setting default cookie attributes cause this issue
it doen'st casue an issue but it's already set for you to similar attribute by the lib. It's redudnant unless you want a custom attribute.
yeah, I saw that those cookies attributes are already set by library but just because I am mentioning them in defaultCookieAttributes and setting useSecureCookie to true and due to that cookie is not setting then it's issue also why a secret is not setted to the cookie value
In remix whenever I set a auth cookie a random value is added to after the actual value