File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ import BlogDate from './components/BlogDate.vue'
1010import BlogIndex from './components/BlogIndex.vue'
1111import ProfileCard from './components/ProfileCard.vue'
1212
13+ // Import Matomo analytics (replaces vuepress-plugin-matomo)
14+ import { initMatomo } from './utils/matomo.js'
15+
1316export default defineClientConfig ( {
1417 enhance ( { app, router, siteData } ) {
1518 // Create Vuetify instance
@@ -29,6 +32,9 @@ export default defineClientConfig({
2932 app . component ( 'BlogDate' , BlogDate )
3033 app . component ( 'BlogIndex' , BlogIndex )
3134 app . component ( 'ProfileCard' , ProfileCard )
35+
36+ // Initialize Matomo Analytics (replaces vuepress-plugin-matomo)
37+ initMatomo ( router )
3238 } ,
3339 setup ( ) { } ,
3440 rootComponents : [ ] ,
You can’t perform that action at this time.
0 commit comments