8 lines
289 B
TypeScript
8 lines
289 B
TypeScript
|
|
import { registerAs } from '@nestjs/config';
|
||
|
|
|
||
|
|
export default registerAs('apple', () => ({
|
||
|
|
bundleId: process.env.APPLE_BUNDLE_ID || '',
|
||
|
|
issuer: process.env.APPLE_ISSUER || 'https://appleid.apple.com',
|
||
|
|
jwksUrl: process.env.APPLE_JWKS_URL || 'https://appleid.apple.com/auth/keys',
|
||
|
|
}));
|