astro/docs/astro.config.mjs

12 lines
257 B
JavaScript
Raw Normal View History

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