vuepress-plugin-google-analytics-4

0.1.1 • Public • Published

VuePress Google Analytics 4 Plugin

This plugin is designed to add support for Google Analytics 4 (gtag) usage in VuePress v1.x versions. The official google analytics plugin doesn't support gtag, but this plugin serves as a workaround to enable gtag-based tracking in your VuePress site.

Installation

To install this plugin, simply add it to your VuePress project's dependencies:

yarn add vuepress-plugin-google-analytics-4
# OR npm install vuepress-plugin-google-analytics-4

Usage

Once the plugin is installed, add the following configuration to your config.js file:

module.exports = {
  plugins: {
    'google-analytics-4': {
        // your gtag tracking ID
        gtag: 'G-0000000000'
    }
  }
}

Or, in list format:

module.exports = {
  plugins: [
    [
      'google-analytics-4',
      {
        // your gtag tracking ID
        gtag: 'G-0000000000'
      }
    ]
  ]
};

Replace G-0000000000 with your own Google Analytics 4 tracking ID.

Credit

Some of the code in this plugin is borrowed from the official Google Analytics plugin for VuePress.

Package Sidebar

Install

npm i vuepress-plugin-google-analytics-4

Weekly Downloads

52

Version

0.1.1

License

MIT

Unpacked Size

3.38 kB

Total Files

4

Last publish

Collaborators

  • laphets