diff options
author | 2021-07-29 13:31:41 -0700 | |
---|---|---|
committer | 2021-07-29 13:31:41 -0700 | |
commit | 6eeafac715aaa077f07dd12d0609301a807a0705 (patch) | |
tree | 0e163a45864794fbe2e926a0a85a189bb500f837 /docs/astro.config.mjs | |
parent | 908139642a7863ce38e567f791aee1972ab6ec1f (diff) | |
download | astro-6eeafac715aaa077f07dd12d0609301a807a0705.tar.gz astro-6eeafac715aaa077f07dd12d0609301a807a0705.tar.zst astro-6eeafac715aaa077f07dd12d0609301a807a0705.zip |
Add algolia-powered search bar to docs site (#917)
* add search bar
* replace cmd+k with slash hotkey
* update api key
* add localhost support for search
Diffstat (limited to 'docs/astro.config.mjs')
-rw-r--r-- | docs/astro.config.mjs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 0364de9e6..7ca85bf1b 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -2,5 +2,8 @@ export default { buildOptions: { site: 'https://docs.astro.build/', }, - renderers: ['@astrojs/renderer-preact'], + renderers: [ + '@astrojs/renderer-preact', + '@astrojs/renderer-react', + ], }; |