astro/docs/astro.config.mjs
Fred K. Schott ae582c5a0d wip
2022-02-07 13:42:53 -08:00

12 lines
309 B
JavaScript

// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
buildOptions: {
site: 'https://docs.astro.build/docs',
},
renderers: [
// Our main renderer for frontend components
'@astrojs/renderer-preact',
// Needed for Algolia search component
'@astrojs/renderer-react',
],
});