2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
11 lines
318 B
JavaScript
11 lines
318 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
renderers: [
|
|
// Enable the Preact renderer to support Preact JSX components.
|
|
'@astrojs/renderer-preact',
|
|
// Enable the React renderer, for the Algolia search component
|
|
'@astrojs/renderer-react',
|
|
],
|
|
});
|