@dylanvann/gatsby-remark-cloudinary
v0.0.13
Published
Convert media to custom components with cloudinary urls.
Downloads
10
Readme
@dylanvann/gatsby-remark-cloudinary
Proccesses images in Gatsby's remark using Cloudinary.
Creates <fast-image>
tags from images in markdown.
Install
npm install @dylanvann/gatsby-remark-cloudinary
# or
yarn add @dylanvann/gatsby-remark-cloudinary
Usage
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: '@dylanvann/gatsby-transformer-cloudinary',
options: {
cloudName: '...',
apiKey: '...',
apiSecret: '...',
},
},
],
}