2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
7 lines
214 B
JavaScript
7 lines
214 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable the Solid renderer to support Solid JSX components.
|
|
renderers: ['@astrojs/renderer-solid'],
|
|
});
|