0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/docs/astro.config.mjs

12 lines
257 B
JavaScript
Raw Normal View History

2021-07-15 13:13:35 -05:00
export default {
buildOptions: {
site: 'https://docs.astro.build/',
2021-07-15 13:13:35 -05:00
},
renderers: [
// Our main renderer for frontend components
2021-07-31 00:41:22 -05:00
'@astrojs/renderer-preact',
// Needed for Algolia search component
2021-07-31 00:41:22 -05:00
'@astrojs/renderer-react',
],
2021-07-15 13:13:35 -05:00
};