12 lines
269 B
TypeScript
Raw Normal View History

2022-09-21 19:40:49 -03:00
import DefaultTheme from 'vitepress/theme';
2022-09-23 23:33:24 -03:00
import Mermaid from 'vitepress-plugin-mermaid/Mermaid.vue';
2022-09-24 23:24:48 -03:00
import './custom.css';
2022-09-21 19:40:49 -03:00
export default {
...DefaultTheme,
2022-09-23 23:33:24 -03:00
enhanceApp({ app }) {
// register global components
app.component('Mermaid', Mermaid);
},
2022-09-21 19:40:49 -03:00
};