Skip to content

Commit

Permalink
feat/#28/리다이렉트 url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gwgw123 committed Dec 2, 2024
1 parent 86c9308 commit 532d62f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export class AuthController {
res.cookie('jwt', jwtToken, {
httpOnly: true,
secure: true,
domain: 'cokoedu.com',
// domain: 'cokoedu.com',
sameSite: 'none',
maxAge: 3600000,
});

res.redirect('https://cokoedu.com/learn');
res.redirect('https://localhost:3000/learn');
}
}

0 comments on commit 532d62f

Please sign in to comment.