mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-15 07:17:00 +10:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('auth', () => ({
|
|
jwtSecret: process.env.JWT_SECRET,
|
|
jwtExpiryTime: parseInt(process.env.JWT_EXPIRY_TIME, 10),
|
|
}));
|