Git Product home page Git Product logo

Comments (4)

matusmarcin avatar matusmarcin commented on August 17, 2024 3

I ran into the same error message when trying to use @nuxtjs/google-analytics, however it's just my own silliness.

Snippet from my nuxt.config.js with the error present:

  modules: [
    '@nuxtjs/google-analytics', {
      id: 'UA-xxx-2'
    },
    'nuxt-auth',
    '@nuxtjs/axios'
  ],

This is the fix:

When trying to load a module like this, along with the property, it needs to be wrapped in [] to make an array.

  modules: [
    [ '@nuxtjs/google-analytics', {
      id: 'UA-xxx-2'
    } ],
    'nuxt-auth',
    '@nuxtjs/axios'
  ],

@AlexLomm in your case, try this:

  modules: [
    [ '@nuxtjs/google-adsense', {
      id: '<<< id >>>'
    } ]
  ],

from google-adsense.

pi0 avatar pi0 commented on August 17, 2024

Hi. This problem is probably because nuxt couldn't find adsense module. Would you please share nuxt.config.js and also ensuring module is probably installed?

from google-adsense.

AlexLomm avatar AlexLomm commented on August 17, 2024

Thanks for replying. Here is the nuxt.config.js:

screen shot 2018-01-23 at 1 31 19 pm

Also, I've installed the package by running npm install @nuxtjs/google-adsense. Is there something more I should've done?

from google-adsense.

jaubut avatar jaubut commented on August 17, 2024

Did you found a solution ? I have the same error with others modules..

from google-adsense.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.