mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
// @ts-check
|
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
|
buildOptions: {
|
|
site: 'https://docs.astro.build/',
|
|
},
|
|
renderers: [
|
|
// Our main renderer for frontend components
|
|
'@astrojs/renderer-preact',
|
|
// Needed for Algolia search component
|
|
'@astrojs/renderer-react',
|
|
],
|
|
});
|