media_folder: "../src/assets/images" # The path to the folder where uploaded media files are stored
public_folder: "../src/assets/images" # The src attribute for uploaded media
backend: 
  - name: "test-repo"
collections:
  - name: "posts" # Used in routes, e.g., /admin/collections/blog
    label: "Post" # Used in the UI
    folder: "src/content/posts" # The path to the folder where the documents are stored
    create: true # Allow users to create new documents in this collection
    fields: # The fields for each document, usually in frontmatter
      - { label: "标题", name: "title", widget: "string" }
      - { label: "日期", name: "date", widget: "datetime" }
      - { label: "作者", name: "author", widget: "string" }
      - { label: "标签", name: "tags", widget: "list" }