astro/examples/subpath/astro.config.mjs
Nate Moore 2b76ee8d75
Export defineConfig helper (#2803)
* feat: add astro/config entrypoint

* chore: update examples to use `defineConfig` util

* chore: prettier fix

* chore: add changeset
2022-03-15 15:27:17 -05:00

10 lines
284 B
JavaScript

import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Comment out "renderers: []" to enable Astro's default component support.
buildOptions: {
site: 'http://example.com/blog',
},
renderers: ['@astrojs/renderer-react'],
});