16 lines
451 B
JavaScript
16 lines
451 B
JavaScript
|
// .vitepress/theme/index.js
|
||
|
import DefaultTheme from "vitepress/theme";
|
||
|
import './styles/custom.css'
|
||
|
import "vitepress-markdown-timeline/dist/theme/index.css";
|
||
|
import googleAnalytics from 'vitepress-plugin-google-analytics'
|
||
|
|
||
|
export default {
|
||
|
|
||
|
extends: DefaultTheme,
|
||
|
enhanceApp: (ctx) => {
|
||
|
googleAnalytics({
|
||
|
id: 'G-FBKYN1RXEJ', // Replace with your GoogleAnalytics ID, which should start with the 'G-'
|
||
|
})
|
||
|
},
|
||
|
|
||
|
}
|