Skip to content

Commit

Permalink
fix plugins place in config
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyShorokhov committed Nov 9, 2024
1 parent d46b168 commit 6f69092
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,23 +141,24 @@ const config: Config = {
apiKey: "41b3073341af875e11a1de96cd00f535",
indexName: "rehldsio",
},
plugins: [
[
"@docusaurus/plugin-google-gtag",
{
trackingID: "G-REKDWWGWC3",
anonymizeIP: false,
},
],
[
"docusaurus-plugin-yandex-metrica",
{
counterID: "98867928",
webvisor: true,
},
],
],
} satisfies Preset.ThemeConfig,

plugins: [
[
"@docusaurus/plugin-google-gtag",
{
trackingID: "G-REKDWWGWC3",
anonymizeIP: false,
},
],
[
"docusaurus-plugin-yandex-metrica",
{
counterID: "98867928",
webvisor: true,
},
],
],
};

export default config;

0 comments on commit 6f69092

Please sign in to comment.