Skip to content

Commit

Permalink
fix(preset-classic): install the right plugin for googleTagManager (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-Cena authored and slorber committed Feb 2, 2023
1 parent 4cd2c65 commit 990e553
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/docusaurus-preset-classic/src/index.ts
Expand Up @@ -83,7 +83,10 @@ export default function preset(
}
if (googleTagManager) {
plugins.push(
makePluginConfig('@docusaurus/plugin-google-gtag', googleTagManager),
makePluginConfig(
'@docusaurus/plugin-google-tag-manager',
googleTagManager,
),
);
}
if (isProd && sitemap !== false) {
Expand All @@ -93,7 +96,7 @@ export default function preset(
throw new Error(
`Unrecognized keys ${Object.keys(rest).join(
', ',
)} found in preset-classic configuration. The allowed keys are debug, docs, blog, pages, sitemap, theme, googleAnalytics, gtag. Check the documentation: https://docusaurus.io/docs/using-plugins#docusauruspreset-classic for more information on how to configure individual plugins.`,
)} found in preset-classic configuration. The allowed keys are debug, docs, blog, pages, sitemap, theme, googleAnalytics, gtag, and googleTagManager. Check the documentation: https://docusaurus.io/docs/using-plugins#docusauruspreset-classic for more information on how to configure individual plugins.`,
);
}

Expand Down

0 comments on commit 990e553

Please sign in to comment.