- Install the package:
$ npm install @variate/nuxt- Register the module in nuxt.config.js:
buildModules: [
    '@variate/nuxt'
]- Create the middleware/variate.jsfile, it will be used to initialize Variate, pass in therouteobject and any targeting values of your choice:
export default function ({ app: { $variate }, route }) {
  if($variate) {
    $variate.initialize({
      view: route,
      targeting: {
        ...
      }
    });
  }
};You can override any options from Variate in nuxt.config.js:
variate: {
    debug: true,
    tracking: true,
    pageview: true,
    reporter: () => {
        // your custom reporting function
    }   
}By default, this module will attempt to load any configuration file named variate.json in the source directory of Nuxt directory.
If you would like to customize this path, specify the configPath in the variate config block in nuxt.config.js.