A blog theme based on vitepress
npm i vitepress-theme-ououe
// .vitepress/theme/index.ts
import Theme from 'vitepress-theme-ououe'
export default Theme
// .vitepress/config.ts
import { defineConfigWithTheme } from 'vitepress'
import type { Theme } from 'vitepress-theme-ououe'
export default defineConfigWithTheme<Theme>({
// ...
themeConfig: {
// config
},
})