我正试图授予Netlify CMS对包含博客站点作者的数据文件的访问权限,但是我无法从文件的根目录获取记录。由于我使用的网站生成器,我需要将记录放在根目录下。有什么我可以代替的星号来做到这一点吗?
- name: "settings"
label: "Settings"
files:
- name: "authors"
label: "Authors"
file: "_data/authors.yml"
fields:
- name: "*****"
label: "Authors"
widget: "list"
fields:
- {label: "Name", name: "name", widget: "string"}
- {label: "Last Name", name: "last_name", widget: "string"}
- {label: "First Name", name: "first_name", widget: "string"}
- {label: "Display Name", name: "display_name", widget: "string"}
- {label: "Bio", name: "bio", widget: "markdown"}