Reactjs – res.clearCookie method is not clearing cookies on the browser dev tools
I'm trying to make a Sign Out function on React-Express Web App. But it doesn't clear my cookie. Code when set the cookie res.cookie('!', t, { maxAge: 1000 * 60 * 60 * 24 * 30, httpOnly: true, secure: process.env.NODE_ENV…