Improved types and updated documentation (#71)

* v1.0.0-alpha44
This commit is contained in:
Daniel Lautzenheiser
2022-11-07 10:27:58 -05:00
committed by GitHub
parent ba1cde4e01
commit c55d1f912f
91 changed files with 3695 additions and 2546 deletions

View File

@ -10,11 +10,20 @@ You can use the `test-repo` backend to try out Static CMS without connecting to
**Note:** The `test-repo` backend can't access your local file system, nor does it connect to a Git repo, thus you won't see any existing files while using it.
To enable this backend, set your backend name to `test-repo` in your Static CMS `config.yml` file.
To enable this backend, set your backend name to `test-repo` in your Static CMS `config` file.
## Example
<CodeTabs>
```yaml
backend:
name: test-repo
```
```js
backend: {
name: 'test-repo',
},
```
</CodeTabs>