nestjs send cookie without response code example
Example: set cookie using nest js
async login(@Body('username') username: string, @Body('password') password: string, @Res() res: Response) {
const token = await this.authService.validateUser(username, password);
res.set('Authorization', 'Bearer ' + token);
res.send({
success: true,
token,
})
});