2021-11-11 17:09:48 +00:00
|
|
|
// @ts-check
|
|
|
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
2021-07-15 18:13:35 +00:00
|
|
|
buildOptions: {
|
2021-07-16 10:59:46 +00:00
|
|
|
site: 'https://docs.astro.build/',
|
2021-07-15 18:13:35 +00:00
|
|
|
},
|
2021-07-31 05:39:15 +00:00
|
|
|
renderers: [
|
|
|
|
// Our main renderer for frontend components
|
2021-07-31 05:41:22 +00:00
|
|
|
'@astrojs/renderer-preact',
|
2021-07-31 05:39:15 +00:00
|
|
|
// Needed for Algolia search component
|
2021-07-31 05:41:22 +00:00
|
|
|
'@astrojs/renderer-react',
|
2021-11-12 12:42:02 +00:00
|
|
|
],
|
2021-11-11 17:11:01 +00:00
|
|
|
});
|