From 15777d89084bbf56c64dad7e4ec5366d6aabe315 Mon Sep 17 00:00:00 2001 From: Skrubbadubba <75796723+Skrubbadubba@users.noreply.github.com> Date: Wed, 18 Jan 2023 21:11:44 +0100 Subject: [PATCH] fix: correct tense + more explicit wording (#386) --- packages/docs/content/docs/add-to-your-site-bundling.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/content/docs/add-to-your-site-bundling.mdx b/packages/docs/content/docs/add-to-your-site-bundling.mdx index 0e41a8f3..d70b6f09 100644 --- a/packages/docs/content/docs/add-to-your-site-bundling.mdx +++ b/packages/docs/content/docs/add-to-your-site-bundling.mdx @@ -51,7 +51,7 @@ CMS.registerPreviewTemplate('my-template', MyTemplate); **Note**: Because `config.yml` is requested via http, make sure `/admin/config.yml` exists as an endpoint on your build. If the file is not placed in the public folder, this might not be the default behaviour for your static site generator. -Make sure the file containing the CMS object will be built as a page, with `@staticcms/core` bundled, and the code including `CMS.init()` being run inside a script tag. This is what might take some time, as it will be done differently based on your static site generator. Check your static site generators's documentation for further details. +Make sure the file containing the CMS object will be built as a page, with `@staticcms/core` bundled, and that the code including `CMS.init()` will run on the client. This is what might take some time, as it will be done differently based on your static site generator. Check your static site generators's documentation for further details. ## Configuration