Answers for "how do I make secret keys available in gatsby-config from Netlify"

CSS
0

how do I make secret keys available in gatsby-config from Netlify

{
    resolve: 'gatsby-source-mautic',
    options: {
        baseUrl:  process.env.MY_MAUTIC_BASE_URL,
        auth: 'basic', [optional]
        publicKey: [your username],
        secretKey: process.env.MY_SECRET_KEY
    }
}
Posted by: Guest on June-21-2021

Code answers related to "how do I make secret keys available in gatsby-config from Netlify"

Browse Popular Code Answers by Language