docs: Update local-backend.mdx put the local_backend property in front of t… (#993)

This commit is contained in:
mnordhaus 2023-11-30 17:21:37 +01:00 committed by GitHub
parent dd80bfa2d3
commit 9003961f0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,19 +16,20 @@ The local backend allows you to use Static CMS with a local git repository, inst
<CodeTabs> <CodeTabs>
```yaml ```yaml
backend:
name: git-gateway
# when using the default proxy server port # when using the default proxy server port
local_backend: true local_backend: true
backend:
name: git-gateway
``` ```
```js ```js
// when using the default proxy server port
local_backend: true,
backend: { backend: {
name: 'git-gateway', name: 'git-gateway',
}, },
// when using the default proxy server port
local_backend: true,
``` ```
</CodeTabs> </CodeTabs>