next-yandex-metrika

Next.js package for Yandex.Metrika. Inject YM tag inside your Next.JS

MIT License

Downloads
413
Stars
7
Committers
1

Next.js Yandex Metrika

Add Yandex Metrika to your Next.js web-application.

How to add this to my project?

Install by package

NPM page

npm add next-yandex-metrika

Install directly.

Copy index.js inside your components directory as YandexMetrika.js, then import inside your Layout or somewhere, and inject this code inside <Head> tag:

<YandexMetrika 
  yid={YOUR_YM_ID},
  clickmap={true/false},
  trackLinks={true/false},
  accurateTrackBounce={true/false},
  webvisor={true/false},
/>

Configuration.

  • yid: Your Yandex Metrika tag ID.
  • clickmap: Boolean, see YM docs, enables clickmap.
  • trackLinks: Boolean, see YM docs.
  • accurateTrackBounce: Boolean, see YM docs.
  • webvisor: Boolean, see YM docs. Enables webvisor.