diff options
Diffstat (limited to 'docs/astro.config.mjs')
-rw-r--r-- | docs/astro.config.mjs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index a5299726c..94290bf17 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -1,12 +1,12 @@ // @ts-check export default /** @type {import('astro').AstroUserConfig} */ ({ - buildOptions: { - site: 'https://docs.astro.build/', - }, - renderers: [ - // Our main renderer for frontend components - '@astrojs/renderer-preact', - // Needed for Algolia search component - '@astrojs/renderer-react', - ], + buildOptions: { + site: 'https://docs.astro.build/', + }, + renderers: [ + // Our main renderer for frontend components + '@astrojs/renderer-preact', + // Needed for Algolia search component + '@astrojs/renderer-react', + ], }); |