Nuxt integration for Google Recaptcha
pnpm add nuxt-recaptcha
Add nuxt-recaptcha to the modules section of your nuxt.config.ts file.
export default defineNuxtConfig({
modules: [
'nuxt-recaptcha',
],
recaptcha: {
siteKey: '...'
},
})
For more info, please refer to our documentation.