feat(server): extend jwt expiration (#1187)

This commit is contained in:
Jason Rasmussen
2022-12-27 10:42:01 -05:00
committed by GitHub
parent 4e860b024b
commit c27c89a680

View File

@@ -3,5 +3,5 @@ import { jwtSecret } from '../constants/jwt.constant';
export const jwtConfig: JwtModuleOptions = {
secret: jwtSecret,
signOptions: { expiresIn: '7d' },
signOptions: { expiresIn: '30d' },
};