Skip to content

Cấu hình Mermaid

Environment: client
This setup function will only run on client side. Make sure the browser compatibility when importing packages.

Tạo ./setup/mermaid.ts với nội dung sau:

ts
import { defineMermaidSetup } from '@slidev/types'

export default defineMermaidSetup(() => {
  return {
    theme: 'forest',
  }
})

Trong quá trình thiết lập, bạn có thể cung cấp cài đặt mặc định tùy chỉnh cho Mermaid. Tham khảo định nghĩa loại và tài liệu của chúng để biết thêm chi tiết.

Released under the MIT License.