This repository has been archived on 2025-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vitepress-theme-blog-charle…/docs/.vitepress/config.ts

21 lines
611 B
TypeScript

import { defineConfig } from 'vitepress'
import { metaData } from './config/constants'
import { head } from './config/head'
import { markdown } from './config/markdown'
import { themeConfig } from './config/theme'
import { withMermaid } from 'vitepress-plugin-mermaid'
export default withMermaid(
defineConfig({
lang: metaData.lang,
title: metaData.title,
description: metaData.description,
cleanUrls: 'without-subfolders',
lastUpdated: true, // 显示最后更新时间
head, // <head>内标签配置
markdown: markdown, // Markdown配置
themeConfig // 主题配置
})
)