Custom Vitepress theme that uses Vuetify components
First install Vitepress
See https://vitepress.dev/guide/getting-started
Then add the custom theme
# with npm
npm i custom-vitepress-vuetify-theme
Create .vitepress/theme/index.js
// .vitepress/theme/index.js
import theme from "custom-vitepress-vuetify-theme";
export default theme
Create the .vitepress/config.js and extend the custom theme config
// .vitepress/config.js
import baseConfig from 'custom-vitepress-vuetify-theme/config'
export default ({
extends: baseConfig
})