I am using ngx-cookie-service component but as soon as i close the browser the cookies disappears, maybe i have to set the expire parameter but i can\'t get it , below what
Use number, which is the 3rd parameter, where the number represents the number of days until it expires.
For example, if you want the cookie to expire in 365 days, use:
this.cookieService.set('cookieName', cookieValue, 365);
Hope that helps!