diff options
Diffstat (limited to 'examples/docs/astro.config.mjs')
-rw-r--r-- | examples/docs/astro.config.mjs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/docs/astro.config.mjs b/examples/docs/astro.config.mjs index 120106f3e..075ab81fe 100644 --- a/examples/docs/astro.config.mjs +++ b/examples/docs/astro.config.mjs @@ -8,10 +8,10 @@ // @ts-check export default /** @type {import('astro').AstroUserConfig} */ ({ - renderers: [ - // Enable the Preact renderer to support Preact JSX components. - '@astrojs/renderer-preact', - // Enable the React renderer, for the Algolia search component - '@astrojs/renderer-react', - ], + renderers: [ + // Enable the Preact renderer to support Preact JSX components. + '@astrojs/renderer-preact', + // Enable the React renderer, for the Algolia search component + '@astrojs/renderer-react', + ], }); |