how to send empty cookie axios react code example
Example 1: axios.defaults.withcredentials = true
const corsConfig = {
origin: true,
credentials: true,
};
app.use(cors(corsConfig));
app.options('*', cors(corsConfig));
Example 2: axios httponly cookie
server:
res.setHeader('Access-Control-Allow-Origin', 'http://localhost:3000');
res.setHeader('Access-Control-Allow-Credentials',true);
client(axios):
axios.defaults.withCredentials = true;