0.0.2 • Published 4 years ago

docusaurus-gtm-plugin v0.0.2

Weekly downloads
50
License
Apache-2.0
Repository
github
Last release
4 years ago

docusaurus-gtm-plugin

Adds a Google Tag Manager script and noscript html tag to your docusaurus site.

Add Plugin

To add the plugin to your docusaurus v2 site, do this: 1. yarn add docusaurus-gtm-plugin (alternatively: npm install --save docusaurus-gtm-plugin) 2. Add the plugin to your docusaurus.config.js like this:

module.exports = {
  plugins: [
    [
      require.resolve('docusaurus-gtm-plugin'),
      {
        id: 'GTM-XXXXXXX', // GTM Container ID
      }
    ]
  ],
  ...
};