import { defineConfig } from 'vitepress'; import { withMermaid } from 'vitepress-plugin-mermaid'; import { metaData } from './config/constants'; import { head } from './config/head'; import { markdown } from './config/markdown'; import { themeConfig } from './config/theme'; export default withMermaid( defineConfig({ lang: metaData.lang, title: metaData.title, description: metaData.description, cleanUrls: true, lastUpdated: true, // 显示最后更新时间 head, // 内标签配置 markdown: markdown, // Markdown配置 vue: { template: { compilerOptions: { isCustomElement: (tag) => customElements.includes(tag), }, }, }, themeConfig, // 主题配置 }), ); const customElements = [ 'mjx-container', 'mjx-assistive-mml', 'math', 'maction', 'maligngroup', 'malignmark', 'menclose', 'merror', 'mfenced', 'mfrac', 'mi', 'mlongdiv', 'mmultiscripts', 'mn', 'mo', 'mover', 'mpadded', 'mphantom', 'mroot', 'mrow', 'ms', 'mscarries', 'mscarry', 'mscarries', 'msgroup', 'mstack', 'mlongdiv', 'msline', 'mstack', 'mspace', 'msqrt', 'msrow', 'mstack', 'mstack', 'mstyle', 'msub', 'msup', 'msubsup', 'mtable', 'mtd', 'mtext', 'mtr', 'munder', 'munderover', 'semantics', 'math', 'mi', 'mn', 'mo', 'ms', 'mspace', 'mtext', 'menclose', 'merror', 'mfenced', 'mfrac', 'mpadded', 'mphantom', 'mroot', 'mrow', 'msqrt', 'mstyle', 'mmultiscripts', 'mover', 'mprescripts', 'msub', 'msubsup', 'msup', 'munder', 'munderover', 'none', 'maligngroup', 'malignmark', 'mtable', 'mtd', 'mtr', 'mlongdiv', 'mscarries', 'mscarry', 'msgroup', 'msline', 'msrow', 'mstack', 'maction', 'semantics', 'annotation', 'annotation-xml', ];