/vitepress-plugin-google-analytics

google-analytics plugin for vitepress

Primary LanguageTypeScript

vitepress-plugin-google-analytics

Google analytics plugin for Vitepress

vitepress-plugin-google-analytics logo

Downloads Version License

Install

yarn add -D vitepress-plugin-google-analytics
# OR npm install -D vitepress-plugin-google-analytics

Usage

// .vitepress/theme/index.ts

import DefaultTheme from "vitepress/theme"
import googleAnalytics from 'vitepress-plugin-google-analytics'

export default {
  ...DefaultTheme,
  enhanceApp: (ctx) => {
    googleAnalytics({
      id: 'G-******', // Replace with your GoogleAnalytics ID, which should start with the 'G-'
    })
  }
}

Then you can use Google analytics in production! 🎉