Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-recaptcha

Appends the reCAPTCHA .js snippet to your Gatsby site. Works great with react-recaptcha.

Installation

With npm:

npm install --save gatsby-plugin-recaptcha

Or with Yarn:

yarn add gatsby-plugin-recaptcha

Implementation

// 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`,
      },
   },
]
© 2023 Gatsby, Inc.