Add Chiffre Analytics to your nuxt.js application
This Nuxt.js module automatically sends first page and route change events to Chiffre Analytics
Install with:
npm install nuxt-chiffre
// or
yarn add nuxt-chiffreAdd nuxt-chiffre to modules section of nuxt.config.js:
export default {
modules: ['nuxt-chiffre'],
chiffre: {
projectId: '<chiffre-project-id>',
publicKey: '<chiffre-public-key>',
debug: false,
},
}The Chiffre project identifier. It can be found in the project URL:
https://chiffre.io/projects/yourProjectID
The Chiffre project public key. It can be found in the project settings, and
looks like pk.{43 base64 characters}.
- Default: false
By default, the module is only enabled if:
projectIdis definedpublicKeyis defined- Nuxt.js is not in development mode
process.env.NODE_ENVis set toproduction
If debug is true, the module will always be enabled.
MIT - Made by Romain Clement.