vitepress-plugin-google-analytics
v1.0.2
Published
google-analytics plugin for vitepress
Downloads
3,773
Maintainers
Readme
vitepress-plugin-google-analytics
Google analytics plugin for Vitepress
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
! 🎉