From 9003961f0d8f75abda3db4909573a7b2cd198806 Mon Sep 17 00:00:00 2001 From: mnordhaus Date: Thu, 30 Nov 2023 17:21:37 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20Update=20local-backend.mdx=20put=20the?= =?UTF-8?q?=20local=5Fbackend=20property=20in=20front=20of=20t=E2=80=A6=20?= =?UTF-8?q?(#993)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/docs/content/docs/local-backend.mdx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/docs/content/docs/local-backend.mdx b/packages/docs/content/docs/local-backend.mdx index 545ab802..e100b2f5 100644 --- a/packages/docs/content/docs/local-backend.mdx +++ b/packages/docs/content/docs/local-backend.mdx @@ -16,19 +16,20 @@ The local backend allows you to use Static CMS with a local git repository, inst ```yaml -backend: - name: git-gateway - # when using the default proxy server port local_backend: true + +backend: + name: git-gateway ``` ```js +// when using the default proxy server port +local_backend: true, + backend: { name: 'git-gateway', }, -// when using the default proxy server port -local_backend: true, ```