api-server/src/config/apple.config.ts

8 lines
289 B
TypeScript
Raw Normal View History

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',
}));