This docusaurus plugin Adds a Google Tag Manager script and noscript html tag to your docusaurus site. This Plugin Adds the Google Tag Manager script to the headTags and the preBodyTags.
To add the plugin to your docusaurus v2 site, do this:
yarn add docusaurus-gtm
(alternatively:npm install --save docusaurus-gtm
)- Add the plugin to your
docusaurus.config.js
like this:
module.exports = {
plugins: [
[
require.resolve('docusaurus-gtm'),
{
id: 'GTM-XXXXXXX', // GTM Container ID
}
]
],
...
};