I changed the `signToken` function to this in auth.service: ``` function signToken(id) { return jwt.sign({ _id: id }, config.secrets.session, { expiresInMinutes: 9000000 }); } ``` My users are being prompted to login daily, sometimes multiple times per day. Is there anything else I need to configure for session persistence?
I changed the
signTokenfunction to this in auth.service:My users are being prompted to login daily, sometimes multiple times per day. Is there anything else I need to configure for session persistence?