I am using redux-cookies-middleware
and there I can pass just name
and value
for the cookies. But if I need to add path
how should I pass it?
{
session: {
name: 'session' // name of the cookie in which the value of session will be synced
},
'auth.token': {
name: 'auth_token' // name of the cookie in which the value of auth.token will be synced
}
}