File size: 244 Bytes
9f0826d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { registerAs } from '@nestjs/config';

export default registerAs('imagekitio', () => ({
  publicKey: process.env.IMAGEKIT_PUBLIC_KEY,
  privateKey: process.env.IMAGEKIT_PRIVATE_KEY,
  urlEndpoint: process.env.IMAGEKIT_URL_ENDPOINT,
}));