fix plugins place in config
Some checks are pending
Deploy to GitHub Pages / Build Docusaurus (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Blocked by required conditions

This commit is contained in:
Sergey Shorokhov 2024-11-09 10:37:59 +03:00
parent d46b168ef8
commit 6f6909273d

View File

@ -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;