Skip to content
Table of Contents

VitePress & Vue

  1. Vitepress Docs: Here
  2. Vue Docs: Here

Head Config

yaml
---
head:
  - - meta
    - name: description
      content: hello
  - - meta
    - name: keywords
      content: super duper SEO
---
ts
type HeadConfig =
  | [string, Record<string, string>]
  | [string, Record<string, string>, string];