UNPKG

@rocketsofawesome/mirage

Version:

[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)

16 lines (12 loc) 360 B
import { Cloudinary } from 'cloudinary-core' const { REACT_APP_CLOUDINARY_DISTRIBUTION } = process.env const configureCloudinary = () => { const cl = new Cloudinary({ cloud_name: 'roa-canon', secure_distribution: REACT_APP_CLOUDINARY_DISTRIBUTION, secure: true }) return cl } const instance = configureCloudinary() export default instance