gatsby-plugin-cnzz
v1.0.13
Published
cnzz analytics for gatsby site
Downloads
19
Maintainers
Readme
gatsby-plugin-cnzz
Add CNZZ Analytics to your Gatsby site.
Install
npm install --save gatsby-plugin-cnzz
How to use in gatsby
// gatsby-config.js
plugins: [
.
.
.
{
resolve: `gatsby-plugin-cnzz`,
options: {
// cnzz analytics siteId
siteId: "YOUR_CNZZ_ANALYTICS_SITE_ID",
// Put analytics script in the head instead of the body [default:false]
head: false,
},
},
.
.
.
];