You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('jwt', () => ({
|
|
secret: process.env.JWT_SECRET || 'default-secret-change-in-production',
|
|
expiresIn: process.env.JWT_EXPIRES_IN || '1h',
|
|
refreshExpiresIn: process.env.JWT_REFRESH_EXPIRES_IN || '7d',
|
|
}));
|