custom-vitepress-vuetify-theme
v0.0.5
Published
Custom Vitepress theme that uses Vuetify components
Downloads
7
Readme
custom-vitepress-vuetify-theme
Custom Vitepress theme that uses Vuetify components
Installation
First install Vitepress
See https://vitepress.dev/guide/getting-started
Then add the custom theme
# with npm
npm i custom-vitepress-vuetify-theme
Usage
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
})