diff --git a/src/content/docs/en/start-here/configuration.mdx b/src/content/docs/en/start-here/configuration.mdx index a1a17dc6..0b2ff0a7 100644 --- a/src/content/docs/en/start-here/configuration.mdx +++ b/src/content/docs/en/start-here/configuration.mdx @@ -11,13 +11,13 @@ import ReadMore from '~/components/ReadMore.astro'; # Available Options -There are two ways to configure the StudioCMS Integration, below are examples of how to configure based on if you choose to use the `astro.config.mjs` or the dedicated `studiocms.config.mjs` file. +There are two ways to configure the StudioCMS integration. Below are examples of how to configure based on if you choose to use the `astro.config.mjs` or the dedicated `studiocms.config.mjs` file. -This page shows you how and where to define the StudioCMS Config. For more information on the StudioCMS config options, see the [Reference pages][reference-page]. +This page shows you how and where to define the StudioCMS configuration. For more information on the StudioCMS configuration options, see the [reference page][reference-page]. -## Using the `astro.config.mjs` file: +## Using the `astro.config.mjs` file ```ts twoslash title="astro.config.mjs" import db from '@astrojs/db'; @@ -33,17 +33,17 @@ export default defineConfig({ db(), studioCMS({ dbStartPage: false, - // ...OtherConfigOptions + // other configuration options }), ], }); ``` -## Using the `studiocms.config.mjs` file (recommended): +## Using the `studiocms.config.mjs` file (recommended) -This file will be automatically picked up and will overwrite any options passed in your astro.config, if you choose to use this option, Please ensure to move all StudioCMS Config options into this file instead like below: +This file will be automatically picked up and will overwrite any options passed in your `astro.config.mjs`, if you choose to use this option. Please ensure to move all StudioCMS configuration options into this file instead like below: -### Example File Structure +### Example file structure @@ -58,7 +58,7 @@ This file will be automatically picked up and will overwrite any options passed -### Example Config +### Example configuration files ```ts twoslash title="astro.config.mjs" import db from '@astrojs/db'; @@ -79,9 +79,9 @@ import { defineStudioCMSConfig } from "studiocms/config"; export default defineStudioCMSConfig({ dbStartPage: false, - // ...OtherConfigOptions + // other configuration options }) ``` {/* Links */} -[reference-page]: /en/config-reference/ \ No newline at end of file +[reference-page]: /en/config-reference/