Created
March 3, 2022 18:47
-
-
Save malgamves/3e99ede7b808e3c4e0981451f245b173 to your computer and use it in GitHub Desktop.
Strapi Gatsby Workshop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = ({ env }) => ({ | |
// ... | |
upload: { | |
config: { | |
provider: 'cloudinary', | |
providerOptions: { | |
cloud_name: env('CLOUDINARY_NAME'), | |
api_key: env('CLOUDINARY_KEY'), | |
api_secret: env('CLOUDINARY_SECRET'), | |
}, | |
actionOptions: { | |
upload: {}, | |
delete: {}, | |
}, | |
}, | |
}, | |
'gatsby-preview': { | |
enabled: true, | |
resolve: './src/plugins/gatsby-preview' | |
}, | |
// ... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment