0.3.0 • Published 6 years ago
nuxt-chiffre v0.3.0
Chiffre Analytics for Nuxt.js
Add Chiffre Analytics to your nuxt.js application
This Nuxt.js module automatically sends first page and route change events to Chiffre Analytics
Setup
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
}
}Module Options
projectId (required)
The Chiffre project identifier.
publicKey (required)
The Chiffre project public key.
debug
- 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.
License
MIT - Made by Romain Clement.