NuxtN
Nuxt3y ago
2 replies
Helgi

Issue with @nuxtjs/recaptcha

I am trying to add @nuxtjs/recaptcha to my Nuxt 3 project.

I am adding the module like this
export default defineNuxtConfig({
  ...
  modules: [
    [
      "@nuxtjs/recaptcha",
      {  
        siteKey: "",
        version: 3,
      },
    ],
  ],
  ...
});


But I keep getting the error:
Cannot start nuxt: Cannot read property 'options' of undefined

I've tried the different variations described in the @nuxtjs/recaptcha docs, but none seem to work.
Does anyone have any pointers?
Was this page helpful?