diff --git a/backend/src/config/auth.ts b/backend/src/config/auth.ts index 706f3d5..6f8c5fd 100644 --- a/backend/src/config/auth.ts +++ b/backend/src/config/auth.ts @@ -1,6 +1,6 @@ export default { secret: process.env.JWT_SECRET || "mysecret", - expiresIn: "15d", + expiresIn: "15m", refreshSecret: process.env.JWT_REFRESH_SECRET || "myanothersecret", refreshExpiresIn: "7d" };