This commit is contained in:
2025-07-18 15:02:46 +09:00
parent bf8c75f770
commit 766a2ad111
37 changed files with 1284 additions and 943 deletions

View File

@@ -30,7 +30,7 @@ exports.AuthModule = AuthModule = __decorate([
useFactory: async (configService) => ({
secret: configService.get('JWT_SECRET'),
signOptions: {
expiresIn: configService.get('JWT_EXPIRES_IN') || '60s',
expiresIn: configService.get('JWT_EXPIRES_IN') || '1h',
},
}),
})