UNPKG

859 BMarkdownView Raw
1# @dylanvann/gatsby-transformer-cloudinary
2
3Processes images in Gatsby's GraphQL layer using Cloudinary.
4
5Creates `ImageCloudinary` nodes from images Gatsby's GraphQL layer.
6
7## Install
8
9```bash
10npm install @dylanvann/gatsby-transformer-cloudinary
11# or
12yarn add @dylanvann/gatsby-transformer-cloudinary
13```
14
15## Usage
16
17```js
18// gatsby-config.js
19module.exports = {
20 plugins: [
21 {
22 resolve: `gatsby-transformer-remark`,
23 options: {
24 plugins: [
25 {
26 resolve: '@dylanvann/gatsby-remark-cloudinary',
27 options: {
28 cloudName: '...',
29 apiKey: '...',
30 apiSecret: '...',
31 },
32 },
33 ],
34 },
35 },
36 ],
37}
38```
\No newline at end of file