summaryrefslogtreecommitdiff
path: root/docs/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-07-30 22:39:15 -0700
committerGravatar GitHub <noreply@github.com> 2021-07-30 22:39:15 -0700
commit7c744961494ca80f82b3ad66c98ff0a1c0496db7 (patch)
tree6f0ed586edd85076b2660b3b00c0fbb91f470449 /docs/astro.config.mjs
parentd0b8485ddfd8dca1376ea0d417ce37282d092cd9 (diff)
downloadastro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.gz
astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.zst
astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.zip
Docs site cleanup (#948)
* add language selector * docs site cleanup * review feedback * code review comments
Diffstat (limited to 'docs/astro.config.mjs')
-rw-r--r--docs/astro.config.mjs6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs
index b3e06ce66..fe4142447 100644
--- a/docs/astro.config.mjs
+++ b/docs/astro.config.mjs
@@ -2,5 +2,9 @@ export default {
buildOptions: {
site: 'https://docs.astro.build/',
},
- renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react'],
+ renderers: [
+ // Our main renderer for frontend components
+ '@astrojs/renderer-preact',
+ // Needed for Algolia search component
+ '@astrojs/renderer-react'],
};