Community Plugin
View plugin on GitHubgatsby-plugin-recaptcha
Appends the reCAPTCHA .js snippet to your Gatsby site. Works great with react-recaptcha.
Installation
With npm:
npm install --save gatsby-plugin-recaptchaOr with Yarn:
yarn add gatsby-plugin-recaptchaImplementation
// In your gatsby-config.js
plugins: [`gatsby-plugin-recaptcha`]Options
- async: Add an async attribute to the script tag (default:- true)
- defer: Add a defer attribute to the script tag (default:- false)
- args: Append a string to the end of the script URL (default:- "")
plugins: [
   {
      resolve: `gatsby-plugin-recaptcha`,
      options: {
         async: false,
         defer: false,
         args: `?onload=onloadCallback&render=explicit`,
      },
   },
]