localhost_oa_based/src/config/security.config.ts

15 lines
459 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ConfigType, registerAs } from '@nestjs/config';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { env, envNumber } from '~/global/env';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
export const securityRegToken = 'security';
2024-02-28 08:32:35 +08:00
export const SecurityConfig = registerAs(securityRegToken, () => ({
jwtSecret: env('JWT_SECRET'),
jwtExprire: envNumber('JWT_EXPIRE'),
refreshSecret: env('REFRESH_TOKEN_SECRET'),
refreshExpire: envNumber('REFRESH_TOKEN_EXPIRE'),
2024-02-28 17:02:46 +08:00
}));
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
export type ISecurityConfig = ConfigType<typeof SecurityConfig>;