I am setting bearer token like this when user logins
document.cookie = `bearer ${result.bearer}`;
I am creating log out functionality and want to delete this cookie how can I do that?
I am setting bearer token like this when user logins
document.cookie = `bearer ${result.bearer}`;
I am creating log out functionality and want to delete this cookie how can I do that?