pleshevski.ru/docs/.vuepress/theme.ts

11 lines
200 B
TypeScript
Raw Normal View History

2024-07-24 17:15:05 +03:00
import { defaultTheme } from '@vuepress/theme-default'
export const mkMyTheme = (options) => {
// returns a theme object
return {
name: 'my-theme',
extends: defaultTheme(options),
}
}