mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
6 lines
232 B
JavaScript
6 lines
232 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue'],
|
|
});
|